Skip to content

Commit 467b529

Browse files
committed
style: fix lint issues in timeout tests
1 parent 4369def commit 467b529

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

apps/sim/tools/timeout.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest'
1+
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
22

33
/**
44
* Tests for timeout functionality in handleProxyRequest and handleInternalRequest
@@ -140,8 +140,7 @@ describe('HTTP Timeout Support', () => {
140140
const timeoutError = new Error('The operation was aborted')
141141
timeoutError.name = 'TimeoutError'
142142

143-
const isTimeoutError =
144-
timeoutError instanceof Error && timeoutError.name === 'TimeoutError'
143+
const isTimeoutError = timeoutError instanceof Error && timeoutError.name === 'TimeoutError'
145144

146145
expect(isTimeoutError).toBe(true)
147146
})

0 commit comments

Comments
 (0)