Skip to content

Commit ffcedc5

Browse files
committed
fix: make all web server tests run serially to prevent interference between describe blocks
1 parent 0ecf2d5 commit ffcedc5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/web-server.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, it, expect, beforeEach, afterEach } from 'bun:test'
22
import { startWebServer, stopWebServer, getServerUrl } from '../src/web/server/server.ts'
33
import { PTYManager, manager } from '../src/plugin/pty/manager.ts'
44

5-
describe('Web Server', () => {
5+
describe.serial('Web Server', () => {
66
const fakeClient = {
77
app: {
88
log: async (_opts: any) => {

0 commit comments

Comments
 (0)