Remove only trailing slashes (#3183)

This commit is contained in:
tomonacci
2026-01-05 13:42:10 -05:00
committed by GitHub
parent 862e717ff7
commit 1ae217d74d
2 changed files with 7 additions and 1 deletions

View File

@@ -70,6 +70,12 @@ describe('Path Utilities', () => {
.toBe('/home/user/some path');
expect(normalizePath('"/usr/local/some app/"'))
.toBe('/usr/local/some app');
expect(normalizePath('/usr/local//bin/app///'))
.toBe('/usr/local/bin/app');
expect(normalizePath('/'))
.toBe('/');
expect(normalizePath('///'))
.toBe('/');
});
it('removes surrounding quotes', () => {