base.spec.ts 262 B

123456789
  1. import {sampleFunction } from "../src";
  2. describe("This is a simple test", () => {
  3. test("Check the sampleFunction function", () => {
  4. const actual = sampleFunction("hello");
  5. const expected = "hellohello";
  6. expect(actual).toEqual(expected);
  7. });
  8. });