We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f545020 commit c4cc1b0Copy full SHA for c4cc1b0
src/utils/__test__/index.test.ts
@@ -29,7 +29,7 @@ describe('normalizePathSlashes', () => {
29
'http://example.com/path/to/resource',
30
);
31
});
32
- test('shoudl not replace double slashes near protocols (after a colon)', () => {
+ test('should not replace double slashes near protocols (after a colon)', () => {
33
expect(normalizePathSlashes('http://host.ydb.com')).toBe('http://host.ydb.com');
34
expect(normalizePathSlashes('https://host.ydb.com')).toBe('https://host.ydb.com');
35
expect(normalizePathSlashes('grpc://host.ydb.com')).toBe('grpc://host.ydb.com');
0 commit comments