Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: toolkit/components/promiseworker/tests/xpcshell/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
const { BasePromiseWorker } = ChromeUtils.importESModule(
"resource://gre/modules/PromiseWorker.sys.mjs"
);
// Worker must be loaded from a chrome:// uri, not a file://
// uri, so we first need to load it.
do_load_manifest("data/chrome.manifest");
var worker = new BasePromiseWorker(WORKER_SOURCE_URI, { type: "module" });
add_task(async function test_simple_args() {
let message = ["test_simple_args", Math.random()];
let result = await worker.post("bounce", message);
Assert.equal(JSON.stringify(result), JSON.stringify(message));
});