We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99acb5a commit 3f5d574Copy full SHA for 3f5d574
src/runner/browser-env/vite/utils.ts
@@ -54,7 +54,14 @@ export const getTestInfoFromViteRequest = (req: Connect.IncomingMessage): TestIn
54
);
55
}
56
57
- return { routeName, runUuid, env };
+ return {
58
+ routeName,
59
+ runUuid,
60
+ env: {
61
+ ...env,
62
+ file: path.join("/", path.relative(process.cwd(), env.file)),
63
+ },
64
+ };
65
};
66
67
export const getPathWithoutExtName = (fsPath: string): string => {
0 commit comments