Karma now works from Gulp.

This commit is contained in:
Gunther Brunner
2014-08-20 20:58:49 +09:00
parent 14ddd14b47
commit f2c00ce016
3 changed files with 15 additions and 16 deletions

View File

@@ -1,10 +1,11 @@
describe('greeter', function () {
function greet(str) {
return 'Helloaw, ' + str
return 'Hello, ' + str
}
it('should say Hello to the World', function () {
expect(greet('World')).toEqual('Hello, World!')
expect(greet('World!')).toEqual('Hello, World!')
})
})