Bug 1274741 - Skip the Fetch nestedWorkerTest on Windows for causing frequent WinXP timeouts in other DOM mochitests. r=bkelly

--HG--
extra : rebase_source : a91083d320543e7beb4abaf57559850ed47dad66
This commit is contained in:
Ryan VanderMeulen 2016-06-21 16:07:19 -04:00
Родитель a80b00abf4
Коммит 4ed824d971
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -141,7 +141,9 @@ function testScript(script) {
return workerTest();
})
.then(function() {
return nestedWorkerTest();
// XXX Bug 1281212 - This makes other, unrelated test suites fail, primarily on WinXP.
let isWin = navigator.platform.indexOf("Win") == 0;
return isWin ? undefined : nestedWorkerTest();
})
.then(function() {
return serviceWorkerTest();