-
-
Save aubricus/4965673 to your computer and use it in GitHub Desktop.
QUnit with Requirejs integration.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Wait for relevant code bits to load before starting any tests | |
define(['core.js'], function( core ) { | |
module("Core Tests"); | |
test("Test core methods", function(){ | |
expect(2); | |
equals( 1, 1, "A trivial test"); | |
ok( true, "Another trivial test"); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Main file for loading RequireJS necessary bits | |
QUnit.config.autostart = false; | |
require(['core.test.js'], function(){ | |
QUnit.start(); //Tests loaded, run tests | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment