Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom authored and github-actions[bot] committed Feb 1, 2025
1 parent df10cc8 commit 328ece4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/instances/rundler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ test('behavior: instance errored (duplicate ports)', async () => {
})

await instance_1.start()
await expect(() =>
instance_2.start(),
).rejects.toThrowError('Failed to start process "rundler"')
await expect(() => instance_2.start()).rejects.toThrowError(
'Failed to start process "rundler"',
)
})

test('behavior: start and stop multiple times', async () => {
Expand Down Expand Up @@ -87,9 +87,9 @@ test('behavior: can subscribe to stderr', async () => {

await instance_1.start()
instance_2.on('stderr', (message) => messages.push(message))
await expect(() =>
instance_2.start(),
).rejects.toThrowError('Failed to start process "rundler"')
await expect(() => instance_2.start()).rejects.toThrowError(
'Failed to start process "rundler"',
)
})

test('behavior: exit', async () => {
Expand Down

0 comments on commit 328ece4

Please sign in to comment.