blob: 9befc9006e706853d9fab259e631a39f3193c095 [file] [log] [blame]
importScripts("/resources/testharness.js");
importScripts("test-incrementer.js");
promise_test(t => {
const worker = new Worker("incrementer-worker.js");
return testSharingViaIncrementerScript(t, worker, "parent worker", worker, "sub-worker");
}, "postMessaging to a dedicated sub-worker allows them to see each others' modifications");
done();