Created
June 13, 2013 18:37
-
-
Save mdb/5776205 to your computer and use it in GitHub Desktop.
Example teabag/AMD spec file
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
// Define your spec file: | |
define('some/path/some_file_spec', | |
[ | |
// The file you want to test: | |
'some/path/some_file' | |
], function( | |
SomeFile) { | |
describe("SomeFile", function () { | |
it("exists", function () { | |
expect(SomeFile).not.toBeNull(); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment