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 baa9979 commit e08f8c9Copy full SHA for e08f8c9
src/bmssp.mjs
@@ -3,7 +3,6 @@ function printMessage(message) {
3
}
4
5
function processMessage(message) {
6
- // Process the message here
7
return `Processed: ${message}`;
8
9
test/main.test.js
@@ -1,5 +1,5 @@
1
import { describe, test, expect } from "@jest/globals";
2
-import { printMessage } from "../src/bmssp.mjs";
+import { printMessage, processMessage } from "../src/bmssp.mjs";
describe("printMessage", () => {
test("sends a message and gets the message back", () => {
0 commit comments