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 637f7e1 commit 46eed15Copy full SHA for 46eed15
1 file changed
testing/e2e/global-setup.ts
@@ -97,7 +97,7 @@ export default async function globalSetup() {
97
98
await mock.start()
99
console.log(`[aimock] started on port 4010`)
100
- ; (globalThis as any).__aimock = mock
+ ;(globalThis as any).__aimock = mock
101
}
102
103
function registerMediaFixtures(mock: LLMock) {
@@ -807,7 +807,7 @@ function readBody(req: http.IncomingMessage): Promise<string> {
807
808
function drainBody(req: http.IncomingMessage): Promise<void> {
809
return new Promise((resolve, reject) => {
810
- req.on('data', () => { })
+ req.on('data', () => {})
811
req.on('end', () => resolve())
812
req.on('error', reject)
813
})
0 commit comments