Skip to content

Commit 99192b6

Browse files
chore(test): remove mocks
1 parent c6c4ce7 commit 99192b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/v3/runtime/sharedRuntimeManager.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { describe, expect, it, vi } from "vitest";
1+
import { describe, expect, it } from "vitest";
22
import { SharedRuntimeManager } from "./sharedRuntimeManager.js";
33
import { CompletedWaitpoint } from "../schemas/index.js";
44

55
describe("SharedRuntimeManager", () => {
66
const mockIpc = {
7-
send: vi.fn(),
7+
send: () => { },
88
} as any;
99

1010
const manager = new SharedRuntimeManager(mockIpc, false);

0 commit comments

Comments
 (0)