Sha256: 1cfb5207108c4b9924c6cad317f8ef5983a6a47a292a84b936e37b38f3841c19

Contents?: true

Size: 390 Bytes

Versions: 224

Compression:

Stored size: 390 Bytes

Contents

import HelloWorld from "./hello-world"

describe('Hello World', () => {

  it('says hello world with no name', () => {
    expect(HelloWorld.hello()).toEqual('Hello, World!')
  })

  xit('says hello to bob', () => {
    expect(HelloWorld.hello('Bob')).toEqual('Hello, Bob!')
  })

  xit('says hello to sally', () => {
    expect(HelloWorld.hello('Sally')).toEqual('Hello, Sally!')
  })
})

Version data entries

224 entries across 224 versions & 1 rubygems

Version Path
trackler-2.1.0.20 tracks/typescript/exercises/hello-world/hello-world.test.ts
trackler-2.1.0.19 tracks/typescript/exercises/hello-world/hello-world.test.ts
trackler-2.1.0.18 tracks/typescript/exercises/hello-world/hello-world.test.ts
trackler-2.1.0.17 tracks/typescript/exercises/hello-world/hello-world.test.ts