-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
test.js:
if (typeof QUnit == 'undefined')
QUnit = require('qunit-cli');
QUnit.module("Test Module", {
setup: function() {
// setup some stuff
}, teardown: function() {
// tear down if needed
}
});
test("test1", function() {
equal("not equal", "equal", "error message");
});
test("test2", function() {
equal("equal", "equal", "error message");
});
run:
node test.js
I get no output.
If I run the tests in my browser I get the attached.

Am I doing something wrong?
Metadata
Metadata
Assignees
Labels
No labels