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.
2 parents 33acf44 + afcd730 commit b946fb5Copy full SHA for b946fb5
test/main.test.js
@@ -3,6 +3,7 @@ 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!");
+ let testValue = "Hello, bmssp!";
7
+ expect(printMessage(testValue)).toBe(testValue);
8
});
9
0 commit comments