Skip to content

Commit

Permalink
fix: remove debugger statement (#1086)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath authored Jan 9, 2025
1 parent 4702811 commit 6489172
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/__tests__/volume/mkdirSync.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ describe('mkdirSync', () => {
it('throws ENOTDIR when trying to create under something that is not a directory', () => {
const vol = create({ '/a': 'I am a file' });
expect(() => {
debugger;
vol.mkdirSync('/a/b/c', { recursive: true });
}).toThrow(/ENOTDIR/);
});
Expand Down
1 change: 0 additions & 1 deletion src/volume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,6 @@ export class Volume implements FsCallbackApi, FsSynchronousApi {
}

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

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

0 comments on commit 6489172

Please sign in to comment.