Skip to content

Commit 6599d30

Browse files
committed
feat: Add diferent value to test
1 parent 33acf44 commit 6599d30

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/main.test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import { describe, test, expect } from "@jest/globals";
22
import { printMessage } from "../src/bmssp.mjs";
33

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

0 commit comments

Comments
 (0)