Skip to content

Commit 41c5bd8

Browse files
committed
style(webhooks): format the Ashby provider test to biome's apps/sim config
CI runs `biome check .` from apps/sim; I had run biome ad hoc from the repo root, which resolves a different config and left this hunk unformatted.
1 parent 7f809e4 commit 41c5bd8

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

apps/sim/lib/webhooks/providers/ashby.test.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,12 @@ describe('ashbyHandler', () => {
152152
} as never
153153

154154
const respondWith = (body: unknown, status = 200) => {
155-
globalThis.fetch = vi
156-
.fn()
157-
.mockResolvedValue(
158-
new Response(JSON.stringify(body), {
159-
status,
160-
headers: { 'content-type': 'application/json' },
161-
})
162-
) as never
155+
globalThis.fetch = vi.fn().mockResolvedValue(
156+
new Response(JSON.stringify(body), {
157+
status,
158+
headers: { 'content-type': 'application/json' },
159+
})
160+
) as never
163161
}
164162

165163
it('surfaces the object-shaped errors array Ashby documents', async () => {

0 commit comments

Comments
 (0)