import {sampleFunction } from "../src"; describe("This is a simple test", () => { test("Check the sampleFunction function", () => { const actual = sampleFunction("hello"); const expected = "hellohello"; expect(actual).toEqual(expected); }); });