From 196ce483fdf3ef1277436eeeeeb43498c2386eca Mon Sep 17 00:00:00 2001 From: Spencer Date: Fri, 24 Apr 2026 17:52:54 +0000 Subject: [PATCH] test(integration): trim whitespace in read-then-write e2e test assertion --- integration-tests/file-system.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/file-system.test.ts b/integration-tests/file-system.test.ts index aa50000ef6..a433f8e258 100644 --- a/integration-tests/file-system.test.ts +++ b/integration-tests/file-system.test.ts @@ -172,7 +172,7 @@ describe('file-system', () => { ).toBeDefined(); const newFileContent = rig.readFile(fileName); - expect(newFileContent).toBe('1.0.1'); + expect(newFileContent.trim()).toBe('1.0.1'); }); it.skip('should replace multiple instances of a string', async () => {