Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update sdk to add testSet to dedupData as well #116

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion v2/dedup/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,15 @@ export default function middleware(): (req: Request, res: Response, next: NextFu

export function afterMiddleware(req: Request, res: Response) {
let id = req.get("KEPLOY-TEST-ID");
let testSet = req.get("KEPLOY-TEST-SET-ID");
if (!id) {
console.error("No test ID found in the request headers");
return;
}
let executedLinesByFile = GetCoverage();

let currentData = {
id: id,
id: testSet + "/" + id,
executedLinesByFile: executedLinesByFile
};

Expand Down
Loading