Skip to content

Commit

Permalink
fix(test/aa): platform-agnostic path separator
Browse files Browse the repository at this point in the history
  • Loading branch information
legobeat committed Mar 7, 2024
1 parent 44fa0ef commit f4b6eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aa/test/index.spec.js
Expand Up @@ -11,7 +11,7 @@ function normalizeEntries(map) {
return [...map.entries()]
.sort()
.map(([packagePath, canonicalName]) => [
path.relative(__dirname, packagePath),
path.normalize(path.relative(__dirname, packagePath)),
canonicalName,
])
}
Expand Down

0 comments on commit f4b6eaf

Please sign in to comment.