1
0
Fork 0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-07-03 12:06:31 +02:00

Initial Commit

This commit is contained in:
kkapsner 2014-07-31 03:05:51 +02:00
parent c8410b6536
commit 0ab4f1b7d3
7 changed files with 104 additions and 0 deletions

12
test/test-main.js Normal file
View file

@ -0,0 +1,12 @@
var main = require("./main");
exports["test main"] = function(assert) {
assert.pass("Unit test running!");
};
exports["test main async"] = function(assert, done) {
assert.pass("async Unit test running!");
done();
};
require("sdk/test").run(exports);