test(integration): trim whitespace in read-then-write e2e test assertion

This commit is contained in:
Spencer
2026-04-24 17:52:54 +00:00
parent 85339c95ed
commit 196ce483fd
+1 -1
View File
@@ -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 () => {