We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f7d0432 + 7233d37 commit 3787e95Copy full SHA for 3787e95
integration-tests/file-system.test.ts
@@ -5,8 +5,6 @@
5
*/
6
7
import { describe, it, expect } from 'vitest';
8
-import { existsSync } from 'node:fs';
9
-import * as path from 'node:path';
10
import { TestRig, printDebugInfo, validateModelOutput } from './test-helper.js';
11
12
describe('file-system', () => {
@@ -245,12 +243,5 @@ describe('file-system', () => {
245
243
successfulReplace,
246
244
'A successful replace should not have occurred',
247
).toBeUndefined();
248
-
249
- // Final verification: ensure the file was not created.
250
- const filePath = path.join(rig.testDir!, fileName);
251
- const fileExists = existsSync(filePath);
252
- expect(fileExists, 'The non-existent file should not be created').toBe(
253
- false,
254
- );
255
});
256
0 commit comments