From f968b701942ccf148c60db21ee8cd323e4f133bd Mon Sep 17 00:00:00 2001 From: "Aman Kumar [SSW]" <71385247+amankumarrr@users.noreply.github.com> Date: Wed, 27 Mar 2024 12:06:14 +1100 Subject: [PATCH] Removing custom reporter file --- .github/workflows/template-ui-tests.yml | 2 +- ui-tests/reporter.ts | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 ui-tests/reporter.ts diff --git a/.github/workflows/template-ui-tests.yml b/.github/workflows/template-ui-tests.yml index 3f416bd2b4..eb94100eae 100644 --- a/.github/workflows/template-ui-tests.yml +++ b/.github/workflows/template-ui-tests.yml @@ -79,7 +79,7 @@ jobs: name: GitHub Issue runs-on: ubuntu-latest needs: test - if: needs.test.outputs.testPassed == 'True' && inputs.create-issue == true + if: needs.test.outputs.testPassed == 'False' && inputs.create-issue == true steps: - uses: actions/checkout@v4 diff --git a/ui-tests/reporter.ts b/ui-tests/reporter.ts deleted file mode 100644 index faf241df1b..0000000000 --- a/ui-tests/reporter.ts +++ /dev/null @@ -1,8 +0,0 @@ -import type { FullResult, Reporter } from "@playwright/test/reporter"; - -class MyReporter implements Reporter { - onEnd(result: FullResult) { - console.log(`${result.status}`); - } -} -export default MyReporter;