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