Skip to content

Instantly share code, notes, and snippets.

@ceth-x86
Last active December 15, 2015 19:09
Show Gist options
  • Save ceth-x86/5309348 to your computer and use it in GitHub Desktop.
Save ceth-x86/5309348 to your computer and use it in GitHub Desktop.
QUnit : Tests organization
module("module 1");
test("my first test", function() {
ok(true);
});
module("module 2", {
setup: function() {
},
teardown: function() {
}
});
test("my second test", function() {
ok(true);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment