From 328ece42a498eab4763dc90729a3950e40e1b87a Mon Sep 17 00:00:00 2001 From: jxom <7336481+jxom@users.noreply.github.com> Date: Sat, 1 Feb 2025 02:39:14 +0000 Subject: [PATCH] chore: format --- src/instances/rundler.test.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/instances/rundler.test.ts b/src/instances/rundler.test.ts index 377b9af..0a18d1e 100644 --- a/src/instances/rundler.test.ts +++ b/src/instances/rundler.test.ts @@ -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 () => { @@ -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 () => {