From 97d3e9e44a33b0f3de8ee09af996f0618fd11c5f Mon Sep 17 00:00:00 2001 From: Derek Ledoux <31769272+doublederek@users.noreply.github.com> Date: Wed, 8 May 2024 12:18:09 -0400 Subject: [PATCH] Update solution.test.ts --- typescript/solution.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/solution.test.ts b/typescript/solution.test.ts index e329198..c9cdaeb 100644 --- a/typescript/solution.test.ts +++ b/typescript/solution.test.ts @@ -7,7 +7,7 @@ describe('solution.ts output', () => { it('should print the correct output to the console', async () => { const { stdout } = await execAsync('ts-node solution.ts'); - const expected = process.env.TEST_ANSWER; + const expected = 'HIPPOPOTOMONSTROSESQUIPPEDALIOPHOBIA'; expect(stdout.trim()).toBe(expected); }); -}); \ No newline at end of file +});