We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9db4b7 commit 30174ffCopy full SHA for 30174ff
1 file changed
test/N3Parser-test.js
@@ -3084,6 +3084,12 @@ describe('Parser', () => {
3084
});
3085
3086
describe('additional cases', () => {
3087
+ // base path ending in hash
3088
+ itShouldResolve('http://abc/xyz#', '', 'http://abc/xyz');
3089
+
3090
+ // base path ending in question mark
3091
+ itShouldResolve('http://abc/xyz?', '', 'http://abc/xyz?');
3092
3093
// relative paths ending with '.'
3094
itShouldResolve('http://abc/', '.', 'http://abc/');
3095
itShouldResolve('http://abc/def/ghi', '.', 'http://abc/def/');
0 commit comments