Skip to content

Commit 1af1825

Browse files
committed
fix: test
1 parent 35e0812 commit 1af1825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/transports/streamableHttp.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { describe, expect, it, beforeAll, afterAll } from "vitest";
66
describe("StreamableHttpRunner", () => {
77
let runner: StreamableHttpRunner;
88

9-
beforeAll(() => {
9+
beforeAll(async () => {
1010
runner = new StreamableHttpRunner();
11-
void runner.start();
11+
await runner.start();
1212
});
1313

1414
afterAll(async () => {

0 commit comments

Comments
 (0)