Skip to content

Commit

Permalink
feature: exclude empty default steps
Browse files Browse the repository at this point in the history
Exclude `Before Hook` and `After Hook` from a result if they don't have children steps.
  • Loading branch information
gibiw committed Aug 28, 2024
1 parent 2586f87 commit cdba2fc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions qase-playwright/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [email protected]

## What's new

Exclude `Before Hook` and `After Hook` if they don't have children steps.

# [email protected]

## What's new
Expand Down
2 changes: 1 addition & 1 deletion qase-playwright/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playwright-qase-reporter",
"version": "2.0.11",
"version": "2.0.12",
"description": "Qase TMS Playwright Reporter",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions qase-playwright/src/reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ export class PlaywrightQaseReporter implements Reporter {
continue;
}

if ((testStep.title === 'Before Hooks' || testStep.title === 'After Hooks') && testStep.steps.length === 0) {
continue;
}

const attachments = this.stepAttachments.get(testStep);

const id = uuidv4();
Expand Down

0 comments on commit cdba2fc

Please sign in to comment.