Skip to content

Commit 1a5dfbe

Browse files
Copilotstreamich
andcommitted
fix: remove implemented APIs from missing-apis tests
Co-authored-by: streamich <[email protected]>
1 parent 6af4a41 commit 1a5dfbe

File tree

2 files changed

+280
-434
lines changed

2 files changed

+280
-434
lines changed

src/node/__tests__/missing-apis.test.ts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,4 @@ describe('Missing APIs', () => {
2020
await expect(vol.promises.glob('*.js')).rejects.toThrow('Not implemented');
2121
});
2222
});
23-
24-
describe('openAsBlob API', () => {
25-
it('should throw "Not implemented"', () => {
26-
expect(() => vol.openAsBlob('/test/file.txt')).toThrow('Not implemented');
27-
});
28-
});
29-
30-
describe('statfs APIs', () => {
31-
it('statfsSync should throw "Not implemented"', () => {
32-
expect(() => vol.statfsSync('/test')).toThrow('Not implemented');
33-
});
34-
35-
it('statfs should throw "Not implemented"', () => {
36-
expect(() => vol.statfs('/test', () => {})).toThrow('Not implemented');
37-
});
38-
39-
it('promises.statfs should throw "Not implemented"', async () => {
40-
await expect(vol.promises.statfs('/test')).rejects.toThrow('Not implemented');
41-
});
42-
});
4323
});

0 commit comments

Comments
 (0)