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 574beaa commit 2e1f646Copy full SHA for 2e1f646
e2e/plugin-typescript-e2e/tests/collect.e2e.test.ts
@@ -27,8 +27,8 @@ function sanitizeReportPaths(report: Report): Report {
27
if (capturedPath.endsWith('.ts')) {
28
return `'${osAgnostic}'`;
29
}
30
- // on Windows the path starts from "D/" not "./". This normalizes it to "./<segment>"
31
- return `'${['.'].concat(osAgnostic.split('/').slice(-1)).join('/')}'`;
+ // on Windows the path starts from "plugin-typescript-e2e/src" not "./". This normalizes it to "./<segment>"
+ return `'${['.', osAgnostic.split('/').slice(-1)].join('/')}'`;
32
},
33
),
34
0 commit comments