Skip to content

Commit 6489172

Browse files
authored
fix: remove debugger statement (#1086)
1 parent 4702811 commit 6489172

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/__tests__/volume/mkdirSync.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ describe('mkdirSync', () => {
121121
it('throws ENOTDIR when trying to create under something that is not a directory', () => {
122122
const vol = create({ '/a': 'I am a file' });
123123
expect(() => {
124-
debugger;
125124
vol.mkdirSync('/a/b/c', { recursive: true });
126125
}).toThrow(/ENOTDIR/);
127126
});

src/volume.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,6 @@ export class Volume implements FsCallbackApi, FsSynchronousApi {
13271327
}
13281328

13291329
private realpathBase(filename: string, encoding: TEncodingExtended | undefined): TDataOut {
1330-
debugger;
13311330
const realLink = this.getResolvedLinkOrThrow(filename, 'realpath');
13321331

13331332
return strToEncoding(realLink.getPath() || '/', encoding);

0 commit comments

Comments
 (0)