Commit 6e1f46f43bf0e812d2002998b3e786fed32aaedd

Authored by David Guilherme
1 parent 462bae6b
Exists in master

Remove test folder

Showing 1 changed file with 0 additions and 19 deletions   Show diff stats
firefox/test/test-index.js
... ... @@ -1,19 +0,0 @@
1   -var main = require("../");
2   -
3   -exports["test main"] = function(assert) {
4   - assert.pass("Unit test running!");
5   -};
6   -
7   -exports["test main async"] = function(assert, done) {
8   - assert.pass("async Unit test running!");
9   - done();
10   -};
11   -
12   -exports["test dummy"] = function(assert, done) {
13   - main.dummy("foo", function(text) {
14   - assert.ok((text === "foo"), "Is the text actually 'foo'");
15   - done();
16   - });
17   -};
18   -
19   -require("sdk/test").run(exports);