Created
June 10, 2012 00:16
-
-
Save there4/2903186 to your computer and use it in GitHub Desktop.
javascript: Jasmine template (jslint)
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
/*global beforeEach, afterEach */ | |
/*global describe, it, expect */ | |
/*global window, eb, loadFixtures */ | |
(function () { | |
"use strict"; | |
describe('Test Class', function() { | |
it('Test Name', function () { | |
expect(true).toBeTruthy(); | |
}); | |
}); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment