test(hygiene): close every brain the vfs unit suite creates
Some checks are pending
CI / Node 22 (push) Waiting to run
CI / Node 24 (push) Waiting to run
CI / Integration + conformance (Node 22) (push) Waiting to run
CI / Bun (latest) (push) Waiting to run
Some checks are pending
CI / Node 22 (push) Waiting to run
CI / Node 24 (push) Waiting to run
CI / Integration + conformance (Node 22) (push) Waiting to run
CI / Bun (latest) (push) Waiting to run
Each file opened a Brainy per test (beforeEach) and never closed it.
This commit is contained in:
parent
de79d6b5a4
commit
be307a1579
3 changed files with 15 additions and 3 deletions
|
|
@ -3,7 +3,7 @@
|
|||
* Ensures tree methods prevent recursion and work correctly
|
||||
*/
|
||||
|
||||
import { describe, it, expect, beforeEach } from 'vitest'
|
||||
import { describe, it, expect, beforeEach, afterEach } from 'vitest'
|
||||
import { Brainy } from '../../src/brainy.js'
|
||||
import { VirtualFileSystem } from '../../src/vfs/VirtualFileSystem.js'
|
||||
import { VFSTreeUtils } from '../../src/vfs/TreeUtils.js'
|
||||
|
|
@ -24,6 +24,10 @@ describe('VFS Tree Operations', () => {
|
|||
await vfs.init()
|
||||
})
|
||||
|
||||
afterEach(async () => {
|
||||
await brain.close()
|
||||
})
|
||||
|
||||
describe('Critical: No Self-Inclusion Bug', () => {
|
||||
it('should NEVER return a directory as its own child', async () => {
|
||||
// Create test structure
|
||||
|
|
|
|||
Reference in a new issue