We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33acf44 commit 6599d30Copy full SHA for 6599d30
test/main.test.js
@@ -2,7 +2,8 @@ import { describe, test, expect } from "@jest/globals";
2
import { printMessage } from "../src/bmssp.mjs";
3
4
describe("printMessage", () => {
5
- test("sends a message and gets the message back", () => {
6
- expect(printMessage("Hello, World!")).toBe("Hello, World!");
+ test("sends a message gets the message back", () => {
+ let testValue = "Hello, World v0.7.0!";
7
+ expect(printMessage(testValue)).toBe(testValue);
8
});
9
0 commit comments