Skip to content

Instantly share code, notes, and snippets.

@there4
Created June 10, 2012 00:16
Show Gist options
  • Save there4/2903186 to your computer and use it in GitHub Desktop.
Save there4/2903186 to your computer and use it in GitHub Desktop.
javascript: Jasmine template (jslint)
/*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