//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"); }); });