Updated to latest jasmine version

This commit is contained in:
Rajan Agaskar
2009-04-22 08:00:04 -07:00
parent 2032f51460
commit a3ea7c7c47
34 changed files with 5243 additions and 0 deletions

7
test/example/example.js Normal file
View File

@@ -0,0 +1,7 @@
describe('one suite description', function () {
it('should be a test', function() {
runs(function () {
expect(true).toEqual(true);
});
});
});