1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 02:29:26 +02:00
OpenSTF/res/app/hello-test.js
2014-08-20 20:58:49 +09:00

11 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!')
})
})