fune/dom/filesystem/tests/worker_basic.js
Victor Porof 0a8ff0ad85 Bug 1561435 - Format dom/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35951

--HG--
extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
2019-07-05 10:44:55 +02:00

50 lines
766 B
JavaScript

/* eslint-env worker */
importScripts("filesystem_commons.js");
function finish() {
postMessage({ type: "finish" });
}
function ok(a, msg) {
postMessage({ type: "test", test: !!a, message: msg });
}
function is(a, b, msg) {
ok(a === b, msg);
}
function isnot(a, b, msg) {
ok(a != b, msg);
}
var tests = [
function() {
test_basic(directory, next);
},
function() {
test_getFilesAndDirectories(directory, true, next);
},
function() {
test_getFiles(directory, false, next);
},
function() {
test_getFiles(directory, true, next);
},
];
function next() {
if (!tests.length) {
finish();
return;
}
var test = tests.shift();
test();
}
var directory;
onmessage = function(e) {
directory = e.data;
next();
};