test(e2e): default integration tests to Flash Preview (#25753)

This commit is contained in:
Sandy Tao
2026-04-21 15:21:52 -07:00
committed by GitHub
parent d6f88f8720
commit ffb28c772b
4 changed files with 27 additions and 6 deletions
+3 -1
View File
@@ -134,7 +134,9 @@ describe('file-system', () => {
).toBeTruthy();
const newFileContent = rig.readFile(fileName);
expect(newFileContent).toBe('hello');
// Trim to tolerate models that idiomatically append a trailing newline.
// This test is about path-with-spaces handling, not whitespace fidelity.
expect(newFileContent.trim()).toBe('hello');
});
it('should perform a read-then-write sequence', async () => {