blob: 39e4b1b476539322c35eb5e517eaa84f4c159667 (
plain)
1
2
3
4
5
6
7
|
QUnit.module("exports", { teardown: moduleTeardown });
QUnit.test("amdModule", function( assert ) {
assert.expect(1);
assert.equal( jQuery, amdDefined, "Make sure defined module matches jQuery" );
});
|