Skip to content

Instantly share code, notes, and snippets.

@drewwells
Created April 14, 2011 20:21
Show Gist options
  • Star 25 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save drewwells/920405 to your computer and use it in GitHub Desktop.
Save drewwells/920405 to your computer and use it in GitHub Desktop.
RequireJS and QUnit sitting in a tree
//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");
});
});
//Main file for loading RequireJS necessary bits
QUnit.config.autostart = false;
require(['core.test.js'], function(){
QUnit.start(); //Tests loaded, run tests
});
@mvasilkov
Copy link

Thanks, this helped a lot.

@yamsellem
Copy link

You save my day ^^

@pajtai
Copy link

pajtai commented Dec 31, 2012

Exactly what I was looking for! Didn't know about QUnit.config.autostart

@BenDavidJamin
Copy link

Was looking for something along these lines. Thanks!

@aubricus
Copy link

Indeed, thanks!

@roycehaynes
Copy link

Hm, not working for me. My config.js file...

config.js

https://gist.github.com/roycehaynes/26376f8aa213e6de654a

Thoughts?

@ciastek
Copy link

ciastek commented Jun 10, 2013

Problem with "pushFailure() assertion outside test context". Solution: http://stackoverflow.com/a/15732622/257443

@attebury
Copy link

attebury commented Feb 4, 2014

Thanks @drewwells and @ciastek. Very helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment