hello-world.test.ts 157 B

1234567
  1. import { hello } from './hello-world'
  2. describe('Hello World', () => {
  3. it('says hello world', () => {
  4. expect(hello()).toEqual('Hello, World!')
  5. })
  6. })