diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2015-09-21 14:44:37 +0000 |
---|---|---|
committer | Einar Egilsson <einar@einaregilsson.com> | 2015-09-21 14:44:37 +0000 |
commit | 720c2643cd4bcfbc63b67d7d74c476496c805b8b (patch) | |
tree | 311ad09d1b71ebd10ff9500065c55eabb42a71de /test | |
parent | b2ba3216ea5dbe6a74fdfa75611fce95c1481316 (diff) |
Mostly working on Firefox
Diffstat (limited to 'test')
-rw-r--r-- | test/test-index.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/test-index.js b/test/test-index.js deleted file mode 100644 index b3ad6e8..0000000 --- a/test/test-index.js +++ /dev/null @@ -1,19 +0,0 @@ -var 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); |