Files
stf/res/app/hello-test.js
2014-08-20 20:58:49 +09:00

12 lines
205 B
JavaScript

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