Skip to content

Commit

Permalink
update package-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
gibiw committed Jul 30, 2024
1 parent 57dc8b5 commit 9edc1a9
Show file tree
Hide file tree
Showing 2 changed files with 190 additions and 16 deletions.
202 changes: 187 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion qase-mocha/src/reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
} from 'qase-javascript-commons';
import deasyncPromise from 'deasync-promise';
import { extname, join } from 'node:path';
import { v4 as uuidv4 } from 'uuid';

const Events = Runner.constants;

Expand Down Expand Up @@ -70,6 +71,7 @@ export class MochaQaseReporter extends reporters.Base {
});

if (options.parallel) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
options.require = [...(options.require ?? []), resolveParallelModeSetupFile()];
} else {
this.applyListeners();
Expand Down Expand Up @@ -153,7 +155,7 @@ export class MochaQaseReporter extends reporters.Base {
run_id: null,
signature: this.getSignature(test, ids),
steps: this.currentTest.steps,
id: test.id,
id: uuidv4(),
execution: {
status: test.state
? MochaQaseReporter.statusMap[test.state]
Expand Down

0 comments on commit 9edc1a9

Please sign in to comment.