Skip to content

Commit b946fb5

Browse files
authored
feat: Add diferent value to test (#15)
2 parents 33acf44 + afcd730 commit b946fb5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/main.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { printMessage } from "../src/bmssp.mjs";
33

44
describe("printMessage", () => {
55
test("sends a message and gets the message back", () => {
6-
expect(printMessage("Hello, World!")).toBe("Hello, World!");
6+
let testValue = "Hello, bmssp!";
7+
expect(printMessage(testValue)).toBe(testValue);
78
});
89
});

0 commit comments

Comments
 (0)