mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
11 lines
205 B
JavaScript
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!')
|
|
})
|
|
})
|