Files
stf-DeviceFarmer/res/app/hello-test.js
2014-08-19 20:20:18 +09:00

11 lines
205 B
JavaScript

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