Skip to content

Commit 46eed15

Browse files
ci: apply automated fixes
1 parent 637f7e1 commit 46eed15

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

testing/e2e/global-setup.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default async function globalSetup() {
9797

9898
await mock.start()
9999
console.log(`[aimock] started on port 4010`)
100-
; (globalThis as any).__aimock = mock
100+
;(globalThis as any).__aimock = mock
101101
}
102102

103103
function registerMediaFixtures(mock: LLMock) {
@@ -807,7 +807,7 @@ function readBody(req: http.IncomingMessage): Promise<string> {
807807

808808
function drainBody(req: http.IncomingMessage): Promise<void> {
809809
return new Promise((resolve, reject) => {
810-
req.on('data', () => { })
810+
req.on('data', () => {})
811811
req.on('end', () => resolve())
812812
req.on('error', reject)
813813
})

0 commit comments

Comments
 (0)