(resolve path)

Closes #2
This commit is contained in:
2021-03-21 15:41:10 +01:00
parent 39cd72d7ab
commit ef85df87a4

View File

@@ -33,5 +33,9 @@ describe('resolve path service', () => {
expect( expect(
resolvePath('standard/you/are/here/README.md', './../../other-note.md') resolvePath('standard/you/are/here/README.md', './../../other-note.md')
).toEqual('standard/you/other-note.md') ).toEqual('standard/you/other-note.md')
expect(
resolvePath('standard/you/are/here/README.md', './../../../other-note.md')
).toEqual('standard/other-note.md')
}) })
}) })