Sha256: faffb9964cc42dd4f1c0eafd491c6814b4248023f253a41b5bf8bb930364e2c4
Contents?: true
Size: 388 Bytes
Versions: 71
Compression:
Stored size: 388 Bytes
Contents
import HelloWorld from "./hello-world" describe('Hello World', () => { it('says hello world with no name', () => { expect(HelloWorld.hello()).toEqual('Hello, World!') }) it('says hello to bob', () => { expect(HelloWorld.hello('Bob')).toEqual('Hello, Bob!') }) it('says hello to sally', () => { expect(HelloWorld.hello('Sally')).toEqual('Hello, Sally!') }) })
Version data entries
71 entries across 71 versions & 1 rubygems