timReynolds/typescript-npm-package-starter

View on GitHub
src/index.test.ts

Summary

Maintainability
A
0 mins
Test Coverage
import Example from "./index";

describe("index", () => {
  let sut;

  beforeEach(() => {
    sut = new Example();
  });

  test("When calling hello, should return world", () => {
    expect(sut.hello()).toBe("World");
  });
});