Skip to content
Snippets Groups Projects
Commit b703c655 authored by James Yu's avatar James Yu
Browse files

Fix path check in tests on Windows

parent 9c886d96
No related branches found
No related tags found
No related merge requests found
......@@ -641,8 +641,8 @@ describe(path.basename(__filename).split('.')[0] + ':', () => {
const result = recipe.populateTools(rootFile, tools)
assert.strictEqual(result[0].args?.[0], rootFile.replace('.tex', ''))
assert.strictEqual(result[0].args?.[1], rootFile.replace('.tex', ''))
assert.pathStrictEqual(result[0].args?.[0], rootFile.replace('.tex', ''))
assert.pathStrictEqual(result[0].args?.[1], rootFile.replace('.tex', ''))
assert.pathStrictEqual(result[0].args?.[2], get.path(fixture))
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment