added init task

This commit is contained in:
ragaskar
2009-10-30 23:06:00 -07:00
parent 546604fdc8
commit 391c42533f
3 changed files with 27 additions and 8 deletions

11
templates/example_spec.js Normal file
View File

@@ -0,0 +1,11 @@
describe('ExampleSuite', function () {
it('should have a passing test', function() {
expect(true).toEqual(true);
});
describe('Nested Describe', function () {
it('should also have a passing test', function () {
expect(true).toEqual(true);
});
});
});