From ceadfc3789b71301d9c786f293642980088541be Mon Sep 17 00:00:00 2001 From: John Wesley Walker III <81404201+jww3@users.noreply.github.com> Date: Fri, 18 Oct 2024 17:23:29 +0000 Subject: [PATCH] ran `npm run format` --- __tests__/util.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/util.test.ts b/__tests__/util.test.ts index db5cd10a..9c943c2f 100644 --- a/__tests__/util.test.ts +++ b/__tests__/util.test.ts @@ -87,12 +87,12 @@ describe('isGhes', () => { beforeEach(() => { jest.resetModules(); - process.env = { ...pristineEnv }; + process.env = {...pristineEnv}; }); afterAll(() => { process.env = pristineEnv; - }); + }); it('returns false when the GITHUB_SERVER_URL environment variable is not defined', async () => { delete process.env['GITHUB_SERVER_URL'];