Move to a Web Extension only. Fixes #1005

This commit is contained in:
Jonathan Kingston
2017-11-28 16:22:54 +00:00
parent 4a1597c87f
commit d944116e3e
52 changed files with 13 additions and 301 deletions
-19
View File
@@ -1,19 +0,0 @@
const main = require("../");
exports["test main"] = function(assert) {
assert.pass("Unit test running!");
};
exports["test main async"] = function(assert, done) {
assert.pass("async Unit test running!");
done();
};
exports["test dummy"] = function(assert, done) {
main.dummy("foo", function(text) {
assert.ok((text === "foo"), "Is the text actually 'foo'");
done();
});
};
require("sdk/test").run(exports);