mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-07-03 12:06:31 +02:00
Initial Commit
This commit is contained in:
parent
c8410b6536
commit
0ab4f1b7d3
7 changed files with 104 additions and 0 deletions
12
test/test-main.js
Normal file
12
test/test-main.js
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue