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

Removing NUnit test reporter #5416

Merged
merged 2 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
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
8 changes: 0 additions & 8 deletions .github/workflows/pull-request-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,7 @@ jobs:
run: |
ls -laR .

mv jest.json jest-unit.json
mv lcov.info lcov-unit.info
mv nunit3.xml nunit3-unit.xml
mv result.trx result-unit.trx
working-directory: ./coverage

Expand All @@ -160,9 +158,7 @@ jobs:
with:
name: test-result-unit
path: |
./coverage/jest-*.json
./coverage/lcov-*.info
./coverage/nunit3-*.xml
./coverage/result-*.trx

type-definitions-test:
Expand Down Expand Up @@ -266,9 +262,7 @@ jobs:
run: |
ls -laR .

mv jest.json jest-${{ matrix.shard-index }}.json
mv lcov.info lcov-${{ matrix.shard-index }}.info
mv nunit3.xml nunit3-${{ matrix.shard-index }}.xml
mv result.trx result-${{ matrix.shard-index }}.trx
working-directory: ./coverage

Expand All @@ -278,9 +272,7 @@ jobs:
with:
name: test-result-html-${{ matrix.shard-index }}
path: |
./coverage/jest-*.json
./coverage/lcov-*.info
./coverage/nunit3-*.xml
./coverage/result-*.trx

- if: failure()
Expand Down
300 changes: 0 additions & 300 deletions __tests__/setup/NUnitTestReporter.js

This file was deleted.

7 changes: 0 additions & 7 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,6 @@ module.exports = {
]
}
],
[
'./__tests__/setup/NUnitTestReporter',
{
filename: join(__dirname, 'coverage/nunit3.xml'),
jestResultFilename: join(__dirname, 'coverage/jest.json')
}
],
['github-actions', { silent: false }]
]
};
Loading