Open kien-ht opened 1 year ago
In case my test suites were structured like this:
describe('suite', () => { beforeEach(() => { mock({ 'path-a': 'file content a' }) }) it('test', () => { mock({ 'path-b': 'file content b' }) ... }) })
My virtual file system should contain both path-a and path-b
path-a
path-b
Only path-b exists
Is there any way to make this work?
Describe the problem
In case my test suites were structured like this:
Expected result
My virtual file system should contain both
path-a
andpath-b
Actual Result
Only
path-b
existsIs there any way to make this work?