Skip to content

Commit 6c8eaa6

Browse files
Two minor chore fixes in the miniflare workflows test (#8433)
* chore: remove console.log in miniflare workflows test * chore: fix "commited" typo in miniflare workflows test
1 parent d5ce0c4 commit 6c8eaa6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/miniflare/test/plugins/workflows/index.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ test("persists Workflow data on file-system between runs", async (t) => {
5151
let test = "";
5252
while (performance.now() - begin < 2000) {
5353
const res = await mf.dispatchFetch("http://localhost");
54-
console.log(test);
5554
test = await res.text();
5655
if (
5756
test ===
@@ -64,7 +63,7 @@ test("persists Workflow data on file-system between runs", async (t) => {
6463
}
6564
t.true(success, `Condition was not met in 2000ms - output is ${test}`);
6665

67-
// check if files were commited
66+
// check if files were committed
6867
const names = await fs.readdir(tmp);
6968
t.deepEqual(names, ["miniflare-workflows-MY_WORKFLOW"]);
7069

0 commit comments

Comments
 (0)