diff --git a/packages/io/__tests__/io.test.ts b/packages/io/__tests__/io.test.ts index 829e0dd9..de1f357e 100644 --- a/packages/io/__tests__/io.test.ts +++ b/packages/io/__tests__/io.test.ts @@ -328,12 +328,12 @@ describe('rmRF', () => { const filePath = path.join(testPath, 'file.txt') await fs.appendFile(filePath, 'some data') await assertExists(filePath) - + console.log('before remove while open') const fd = await fs.open(filePath, 'r') await io.rmRF(testPath) await assertNotExists(testPath) - + console.log('before remove after closed') await fd.close() await io.rmRF(testPath) await assertNotExists(testPath)