mirror of
https://github.com/openstf/stf
synced 2025-10-05 02:29:26 +02:00
11 lines
205 B
JavaScript
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!')
|
|
})
|
|
|
|
})
|