|
@@ -0,0 +1,9 @@
|
|
|
|
+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);
|
|
|
|
+ });
|
|
|
|
+});
|