Compare commits

..

1 Commits

Author SHA1 Message Date
Michal Dorner
e6a3c0ca2e Add NUnit XML results fixtures 2021-06-28 22:24:27 +02:00
73 changed files with 25689 additions and 51141 deletions

View File

@@ -1,4 +1,3 @@
dist/ dist/
lib/ lib/
node_modules/ node_modules/
jest.config.js

View File

@@ -1,68 +1,57 @@
{ {
"plugins": ["import", "jest", "@typescript-eslint"], "plugins": ["jest", "@typescript-eslint"],
"extends": ["plugin:github/recommended"], "extends": ["plugin:github/recommended"],
"parser": "@typescript-eslint/parser", "parser": "@typescript-eslint/parser",
"parserOptions": { "parserOptions": {
"ecmaVersion": 9, "ecmaVersion": 9,
"sourceType": "module", "sourceType": "module",
"project": "./tsconfig.json" "project": "./tsconfig.json"
},
"rules": {
"i18n-text/no-en": "off",
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
"import/no-named-as-default": "off",
"no-shadow": "off",
"no-unused-vars": "off",
"prefer-template": "off",
"@typescript-eslint/no-unused-vars": ["error", {"varsIgnorePattern": "^_"}],
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/array-type": "error",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-comment": "error",
"camelcase": "off",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}],
"@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/no-inferrable-types": "error",
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/prefer-for-of": "warn",
"@typescript-eslint/prefer-function-type": "warn",
"@typescript-eslint/prefer-includes": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/promise-function-async": "error",
"@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/restrict-plus-operands": "error",
"semi": "off",
"@typescript-eslint/semi": ["error", "never"],
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "error"
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
}, },
"import/resolver": { "rules": {
"typescript": { "camelcase": "off",
"alwaysTryTypes": true // always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/unist` "eslint-comments/no-use": "off",
} "import/no-namespace": "off",
"no-shadow": "off",
"no-unused-vars": "off",
"prefer-template": "off",
"semi": [ "error", "never"],
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
"@typescript-eslint/array-type": "error",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-comment": "error",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}],
"@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/no-inferrable-types": "error",
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-unused-vars": ["error", {"varsIgnorePattern": "^_"}],
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/prefer-for-of": "warn",
"@typescript-eslint/prefer-function-type": "warn",
"@typescript-eslint/prefer-includes": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/promise-function-async": "error",
"@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/restrict-plus-operands": "error",
"@typescript-eslint/semi": ["error", "never"],
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "error"
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
} }
} }
}

View File

@@ -1,26 +0,0 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'bug'
assignees: 'dorny,dharmendrasha,j-catania'
---
## Describe the bug
A clear and concise description of what the bug is.
## To Reproduce
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
## Expected behavior
A clear and concise description of what you expected to happen.
## Screenshots
If applicable, add screenshots to help explain your problem.
## Additional context
Add any other context about the problem here.

View File

@@ -1,13 +0,0 @@
---
name: Feature Request
about: Suggest a feature
title: ''
labels: 'enhancement'
assignees: 'dorny,dharmendrasha,j-catania'
---
## Describe
## Proposed solution
## Alternatives considered

View File

@@ -1,10 +0,0 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

View File

@@ -1,53 +0,0 @@
# `dist/index.js` is a special file in Actions.
# When you reference an action with `uses:` in a workflow,
# `index.js` is the code that will run.
# For our project, we generate this file through a build process from other source files.
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
name: Check dist/
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Rebuild the dist/ directory
run: |
npm run build
npm run package
- name: Compare the expected and actual dist/ directories
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
id: diff
# If index.js was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@v3
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: dist/

View File

@@ -13,10 +13,7 @@ jobs:
name: Build & Test name: Build & Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci - run: npm ci
- run: npm run build - run: npm run build
- run: npm run format-check - run: npm run format-check
@@ -25,7 +22,15 @@ jobs:
- name: Upload test results - name: Upload test results
if: success() || failure() if: success() || failure()
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v2
with: with:
name: test-results name: test-results
path: __tests__/__results__/*.xml path: __tests__/__results__/*.xml
- name: Create test report
uses: ./
if: success() || failure()
with:
name: JEST Tests
path: __tests__/__results__/*.xml
reporter: jest-junit

View File

@@ -1,22 +0,0 @@
name: Manual run
on:
workflow_dispatch:
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
- run: npm test
- name: Create test report
uses: ./
if: success() || failure()
with:
name: JEST Tests
path: __tests__/__results__/*.xml
reporter: jest-junit

View File

@@ -1,46 +0,0 @@
name: Run all reports
on:
pull_request:
branches:
- main
paths-ignore: [ '**.md' ]
push:
paths-ignore: [ '**.md' ]
branches:
- main
workflow_dispatch:
jobs:
reports:
name: Run
runs-on: ubuntu-latest
strategy:
matrix:
reporter: [ jest-junit, mocha-json, swift-xunit, dart-json, dotnet-trx, java-junit, flutter-json ]
include:
- reporter: jest-junit
path: ./__tests__/fixtures/jest-junit.xml
- reporter: mocha-json
path: ./__tests__/fixtures/mocha-json.json
- reporter: swift-xunit
path: ./__tests__/fixtures/swift-xunit.xml
- reporter: dart-json
path: ./__tests__/fixtures/dart-json.json
- reporter: dotnet-trx
path: ./__tests__/fixtures/dotnet-trx.trx
- reporter: java-junit
path: ./__tests__/fixtures/external/java/pulsar-test-report.xml
- reporter: flutter-json
path: ./__tests__/fixtures/external/flutter/provider-test-results.json
steps:
- uses: actions/checkout@v4
- uses: ./
with:
name: ${{ matrix.reporter }} report
path: ${{ matrix.path }}
reporter: ${{ matrix.reporter }}
fail-on-error: false

View File

@@ -11,7 +11,7 @@ jobs:
name: Workflow test name: Workflow test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v2
- uses: ./ - uses: ./
with: with:
artifact: test-results artifact: test-results

2
.gitignore vendored
View File

@@ -100,5 +100,3 @@ lib/**/*
# Project specific # Project specific
__tests__/__results__ __tests__/__results__
.idea

1
.nvmrc
View File

@@ -1 +0,0 @@
v18.19.0

View File

@@ -1,40 +1,5 @@
# Changelog # Changelog
## 1.7.0
* Fix #199: Use ✅ instead of ✔️ for better cross platform look by @petrdvorak in https://github.com/dorny/test-reporter/pull/200
* Verify content of dist/ folder matches build output by @dorny in https://github.com/dorny/test-reporter/pull/207
* Gracefully handle empty nested testsuite elements for JUnit. by @rvdlaarschot in https://github.com/dorny/test-reporter/pull/193
* Gracefully handle empty failure tags by @haudren-woven in https://github.com/dorny/test-reporter/pull/213
* Fix #208 - java-junit: show annotations on PR changed files by @atsu85 in https://github.com/dorny/test-reporter/pull/209
* Only report failure if fail-on-error is set by @trond-snekvik in https://github.com/dorny/test-reporter/pull/214
* Improve clarity on configuring for forkable repos by @abelbraaksma in https://github.com/dorny/test-reporter/pull/211
* Suppress "Processing test results from" log by @vasanthdharmaraj in https://github.com/dorny/test-reporter/pull/179
* Skip listing of files if error parsing is disabled by @dorny in https://github.com/dorny/test-reporter/pull/216
* Correct typo in docs by @tangowithfoxtrot in https://github.com/dorny/test-reporter/pull/254
* update dependencies by @j-catania in https://github.com/dorny/test-reporter/pull/269
* Add permissions to example yml files by @TurnrDev in https://github.com/dorny/test-reporter/pull/263
* add feature fail-on-empty by @gdams in https://github.com/dorny/test-reporter/pull/243
* Add dependabot configuration by @yeikel in https://github.com/dorny/test-reporter/pull/228
* Bump ws from 7.3.1 to 7.5.9 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/265
* Bump actions/checkout from 2 to 4 by @dependabot in https://github.com/dorny/test-reporter/pull/279
* Add new output for url url html by @luisito666 in https://github.com/dorny/test-reporter/pull/242
* Update README.md by @IanMoroney in https://github.com/dorny/test-reporter/pull/158
* Update jest-Junit part of Readme by @ryancasburn-KAI in https://github.com/dorny/test-reporter/pull/176
* fix: default-valued fields are not mandatory by @TomerFi in https://github.com/dorny/test-reporter/pull/172
* Bump ansi-regex from 4.1.0 to 4.1.1 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/278
* Bump decode-uri-component from 0.2.0 to 0.2.2 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/276
* Bump minimist from 1.2.5 to 1.2.8 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/275
* Bump qs from 6.5.2 to 6.5.3 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/272
* Bump json5 from 2.1.3 to 2.2.3 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/271
* Bump ansi-regex from 3.0.0 to 3.0.1 in /reports/mocha by @dependabot in https://github.com/dorny/test-reporter/pull/270
* declare 'url' and 'url_html' as action outputs by @micha-one in https://github.com/dorny/test-reporter/pull/287
* Avoid split on undefined by @cazou in https://github.com/dorny/test-reporter/pull/258
## v1.6.0
- [Update to node16 + recent versions of core and exec packages](https://github.com/dorny/test-reporter/pull/203)
- [Update all dependencies to latest versions](https://github.com/dorny/test-reporter/pull/186)
- [Fix tests on non us-EN local env](https://github.com/dorny/test-reporter/pull/185)
## v1.5.0 ## v1.5.0
- [Add option to convert backslashes in path pattern to forward slashes](https://github.com/dorny/test-reporter/pull/128) - [Add option to convert backslashes in path pattern to forward slashes](https://github.com/dorny/test-reporter/pull/128)
- [Add option to generate only the summary from processed test results files](https://github.com/dorny/test-reporter/pull/123) - [Add option to generate only the summary from processed test results files](https://github.com/dorny/test-reporter/pull/123)

View File

@@ -18,7 +18,6 @@ This [Github Action](https://github.com/features/actions) displays test results
- Flutter / [test](https://pub.dev/packages/test) - Flutter / [test](https://pub.dev/packages/test)
- Java / [JUnit](https://junit.org/) - Java / [JUnit](https://junit.org/)
- JavaScript / [JEST](https://jestjs.io/) / [Mocha](https://mochajs.org/) - JavaScript / [JEST](https://jestjs.io/) / [Mocha](https://mochajs.org/)
- Swift / xUnit
For more information see [Supported formats](#supported-formats) section. For more information see [Supported formats](#supported-formats) section.
@@ -34,16 +33,12 @@ If that's fine for you, using this action is as simple as:
on: on:
pull_request: pull_request:
push: push:
permissions:
contents: read
actions: read
checks: write
jobs: jobs:
build-test: build-test:
name: Build & Test name: Build & Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 # checkout the repo - uses: actions/checkout@v2 # checkout the repo
- run: npm ci # install packages - run: npm ci # install packages
- run: npm test # run tests (configured to use jest-junit reporter) - run: npm test # run tests (configured to use jest-junit reporter)
@@ -63,8 +58,6 @@ To workaround this security restriction, it's required to use two separate workf
1. `CI` runs in the context of the PR head branch with the read-only token. It executes the tests and uploads test results as a build artifact 1. `CI` runs in the context of the PR head branch with the read-only token. It executes the tests and uploads test results as a build artifact
2. `Test Report` runs in the context of the repository main branch with read/write token. It will download test results and create reports 2. `Test Report` runs in the context of the repository main branch with read/write token. It will download test results and create reports
The second workflow will only run after it has been merged into your default branch (typically `main` or `master`), it won't run in a PR unless after the workflow file is part of that branch.
**PR head branch:** *.github/workflows/ci.yml* **PR head branch:** *.github/workflows/ci.yml*
```yaml ```yaml
name: 'CI' name: 'CI'
@@ -74,10 +67,10 @@ jobs:
build-test: build-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 # checkout the repo - uses: actions/checkout@v2 # checkout the repo
- run: npm ci # install packages - run: npm ci # install packages
- run: npm test # run tests (configured to use jest-junit reporter) - run: npm test # run tests (configured to use jest-junit reporter)
- uses: actions/upload-artifact@v3 # upload test results - uses: actions/upload-artifact@v2 # upload test results
if: success() || failure() # run this step even if previous step failed if: success() || failure() # run this step even if previous step failed
with: with:
name: test-results name: test-results
@@ -91,10 +84,6 @@ on:
workflows: ['CI'] # runs after CI workflow workflows: ['CI'] # runs after CI workflow
types: types:
- completed - completed
permissions:
contents: read
actions: read
checks: write
jobs: jobs:
report: report:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -125,7 +114,7 @@ jobs:
# Name of the Check Run which will be created # Name of the Check Run which will be created
name: '' name: ''
# Comma-separated list of paths to test results # Coma separated list of paths to test results
# Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob) # Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob)
# All matched result files must be of the same format # All matched result files must be of the same format
path: '' path: ''
@@ -167,9 +156,6 @@ jobs:
# Set action as failed if test report contains any failed test # Set action as failed if test report contains any failed test
fail-on-error: 'true' fail-on-error: 'true'
# Set this action as failed if no test results were found
fail-on-empty: 'true'
# Relative path under $GITHUB_WORKSPACE where the repository was checked out. # Relative path under $GITHUB_WORKSPACE where the repository was checked out.
working-directory: '' working-directory: ''
@@ -186,8 +172,6 @@ jobs:
| failed | Count of failed tests | | failed | Count of failed tests |
| skipped | Count of skipped tests | | skipped | Count of skipped tests |
| time | Test execution time [ms] | | time | Test execution time [ms] |
| url | Check run URL |
| url_html | Check run URL HTML |
## Supported formats ## Supported formats
@@ -272,14 +256,14 @@ Some heuristic was necessary to figure out the mapping between the line in the s
</details> </details>
<details> <details>
<summary>jest-junit</summary> <summary>jest-Junit</summary>
[JEST](https://jestjs.io/) testing framework support requires the usage of [jest-junit](https://github.com/jest-community/jest-junit) reporter. [JEST](https://jestjs.io/) testing framework support requires the usage of [jest-Junit](https://github.com/jest-community/jest-Junit) reporter.
It will create test results in Junit XML format which can be then processed by this action. It will create test results in Junit XML format which can be then processed by this action.
You can use the following example configuration in `package.json`: You can use the following example configuration in `package.json`:
```json ```json
"scripts": { "scripts": {
"test": "jest --ci --reporters=default --reporters=jest-junit" "test": "jest --ci --reporters=default --reporters=jest-Junit"
}, },
"devDependencies": { "devDependencies": {
"jest": "^26.5.3", "jest": "^26.5.3",
@@ -318,19 +302,13 @@ Mocha, unfortunately, doesn't have the option to store `json` output directly to
There is a work in progress to fix it: [mocha#4607](https://github.com/mochajs/mocha/pull/4607) There is a work in progress to fix it: [mocha#4607](https://github.com/mochajs/mocha/pull/4607)
</details> </details>
<details>
<summary>swift-xunit (Experimental)</summary>
Support for Swift test results in xUnit format is experimental - should work but it was not extensively tested.
</details>
## GitHub limitations ## GitHub limitations
Unfortunately, there are some known issues and limitations caused by GitHub API: Unfortunately, there are some known issues and limitations caused by GitHub API:
- Test report (i.e. Check Run summary) is markdown text. No custom styling or HTML is possible. - Test report (i.e. Check Run summary) is markdown text. No custom styling or HTML is possible.
- Maximum report size is 65535 bytes. Input parameters `list-suites` and `list-tests` will be automatically adjusted if max size is exceeded. - Maximum report size is 65535 bytes. Input parameters `list-suites` and `list-tests` will be automatically adjusted if max size is exceeded.
- Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v3` to upload them and inspect them manually. - Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v2` to upload them and inspect them manually.
- Check Runs are created for specific commit SHA. It's not possible to specify under which workflow test report should belong if more - Check Runs are created for specific commit SHA. It's not possible to specify under which workflow test report should belong if more
workflows are running for the same SHA. Thanks to this GitHub "feature" it's possible your test report will appear in an unexpected place in GitHub UI. workflows are running for the same SHA. Thanks to this GitHub "feature" it's possible your test report will appear in an unexpected place in GitHub UI.
For more information, see [#67](https://github.com/dorny/test-reporter/issues/67). For more information, see [#67](https://github.com/dorny/test-reporter/issues/67).

View File

@@ -3,12 +3,12 @@
**6** tests were completed in **4s** with **1** passed, **4** failed and **1** skipped. **6** tests were completed in **4s** with **1** passed, **4** failed and **1** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|[test/main_test.dart](#r0s0)|1|3❌||74ms| |[test/main_test.dart](#r0s0)|1✔️|3❌||74ms|
|[test/second_test.dart](#r0s1)||1❌|1|51ms| |[test/second_test.dart](#r0s1)||1❌|1✖️|51ms|
### ❌ <a id="user-content-r0s0" href="#r0s0">test/main_test.dart</a> ### ❌ <a id="user-content-r0s0" href="#r0s0">test/main_test.dart</a>
``` ```
Test 1 Test 1
Passing test ✔️ Passing test
Test 1 Test 1.1 Test 1 Test 1.1
❌ Failing test ❌ Failing test
Expected: <2> Expected: <2>
@@ -24,5 +24,5 @@ Test 2
``` ```
❌ Timeout test ❌ Timeout test
TimeoutException after 0:00:00.000001: Test timed out after 0 seconds. TimeoutException after 0:00:00.000001: Test timed out after 0 seconds.
Skipped test ✖️ Skipped test
``` ```

View File

@@ -3,10 +3,10 @@
**11** tests were completed in **1s** with **5** passed, **5** failed and **1** skipped. **11** tests were completed in **1s** with **5** passed, **5** failed and **1** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|[DotnetTests.XUnitTests.CalculatorTests](#r0s0)|5|5❌|1|118ms| |[DotnetTests.XUnitTests.CalculatorTests](#r0s0)|5✔️|5❌|1✖️|118ms|
### ❌ <a id="user-content-r0s0" href="#r0s0">DotnetTests.XUnitTests.CalculatorTests</a> ### ❌ <a id="user-content-r0s0" href="#r0s0">DotnetTests.XUnitTests.CalculatorTests</a>
``` ```
Custom Name ✔️ Custom Name
❌ Exception_In_TargetTest ❌ Exception_In_TargetTest
System.DivideByZeroException : Attempted to divide by zero. System.DivideByZeroException : Attempted to divide by zero.
❌ Exception_In_Test ❌ Exception_In_Test
@@ -15,17 +15,17 @@
Assert.Equal() Failure Assert.Equal() Failure
Expected: 3 Expected: 3
Actual: 2 Actual: 2
Is_Even_Number(i: 2) ✔️ Is_Even_Number(i: 2)
❌ Is_Even_Number(i: 3) ❌ Is_Even_Number(i: 3)
Assert.True() Failure Assert.True() Failure
Expected: True Expected: True
Actual: False Actual: False
Passing_Test ✔️ Passing_Test
Should be even number(i: 2) ✔️ Should be even number(i: 2)
❌ Should be even number(i: 3) ❌ Should be even number(i: 3)
Assert.True() Failure Assert.True() Failure
Expected: True Expected: True
Actual: False Actual: False
Skipped_Test ✖️ Skipped_Test
Timeout_Test ✔️ Timeout_Test
``` ```

File diff suppressed because it is too large Load Diff

View File

@@ -3,12 +3,12 @@
**6** tests were completed in **1s** with **1** passed, **4** failed and **1** skipped. **6** tests were completed in **1s** with **1** passed, **4** failed and **1** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|[__tests__\main.test.js](#r0s0)|1|3❌||486ms| |[__tests__\main.test.js](#r0s0)|1✔️|3❌||486ms|
|[__tests__\second.test.js](#r0s1)||1❌|1|82ms| |[__tests__\second.test.js](#r0s1)||1❌|1✖️|82ms|
### ❌ <a id="user-content-r0s0" href="#r0s0">__tests__\main.test.js</a> ### ❌ <a id="user-content-r0s0" href="#r0s0">__tests__\main.test.js</a>
``` ```
Test 1 Test 1
Passing test ✔️ Passing test
Test 1 Test 1.1 Test 1 Test 1.1
❌ Failing test ❌ Failing test
Error: expect(received).toBeTruthy() Error: expect(received).toBeTruthy()
@@ -22,5 +22,5 @@ Test 2
``` ```
❌ Timeout test ❌ Timeout test
: Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Error: : Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Error:
Skipped test ✖️ Skipped test
``` ```

View File

@@ -1,10 +0,0 @@
![Tests passed successfully](https://img.shields.io/badge/tests-1%20passed-success)
## ✅ <a id="user-content-r0" href="#r0">fixtures/external/jest/jest-react-component-test-results.xml</a>
**1** tests were completed in **1000ms** with **1** passed, **0** failed and **0** skipped.
|Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:|
|[\<Component /\>](#r0s0)|1✅|||798ms|
### ✅ <a id="user-content-r0s0" href="#r0s0">\<Component /\></a>
```
✅ <Component /> should render properly
```

View File

@@ -3,430 +3,430 @@
**4239** tests were completed in **166s** with **4207** passed, **2** failed and **30** skipped. **4239** tests were completed in **166s** with **4207** passed, **2** failed and **30** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|e2e/__tests__/asyncAndCallback.test.ts|1|||746ms| |e2e/__tests__/asyncAndCallback.test.ts|1✔️|||746ms|
|e2e/__tests__/asyncRegenerator.test.ts|1|||4s| |e2e/__tests__/asyncRegenerator.test.ts|1✔️|||4s|
|e2e/__tests__/autoClearMocks.test.ts|2|||2s| |e2e/__tests__/autoClearMocks.test.ts|2✔️|||2s|
|e2e/__tests__/autoResetMocks.test.ts|2|||2s| |e2e/__tests__/autoResetMocks.test.ts|2✔️|||2s|
|e2e/__tests__/autoRestoreMocks.test.ts|2|||2s| |e2e/__tests__/autoRestoreMocks.test.ts|2✔️|||2s|
|e2e/__tests__/babelPluginJestHoist.test.ts|1|||6s| |e2e/__tests__/babelPluginJestHoist.test.ts|1✔️|||6s|
|e2e/__tests__/badSourceMap.test.ts|1|||858ms| |e2e/__tests__/badSourceMap.test.ts|1✔️|||858ms|
|e2e/__tests__/beforeAllFiltered.ts|1|||958ms| |e2e/__tests__/beforeAllFiltered.ts|1✔️|||958ms|
|e2e/__tests__/beforeEachQueue.ts|1||1|55ms| |e2e/__tests__/beforeEachQueue.ts|1✔️||1✖️|55ms|
|e2e/__tests__/callDoneTwice.test.ts|1|||882ms| |e2e/__tests__/callDoneTwice.test.ts|1✔️|||882ms|
|e2e/__tests__/chaiAssertionLibrary.ts|1|||2s| |e2e/__tests__/chaiAssertionLibrary.ts|1✔️|||2s|
|e2e/__tests__/circularInequality.test.ts|1|||1s| |e2e/__tests__/circularInequality.test.ts|1✔️|||1s|
|e2e/__tests__/circusConcurrentEach.test.ts|2|||2s| |e2e/__tests__/circusConcurrentEach.test.ts|2✔️|||2s|
|e2e/__tests__/circusDeclarationErrors.test.ts|1|||869ms| |e2e/__tests__/circusDeclarationErrors.test.ts|1✔️|||869ms|
|e2e/__tests__/clearCache.test.ts|2|||1s| |e2e/__tests__/clearCache.test.ts|2✔️|||1s|
|e2e/__tests__/cliHandlesExactFilenames.test.ts|2|||1s| |e2e/__tests__/cliHandlesExactFilenames.test.ts|2✔️|||1s|
|e2e/__tests__/compareDomNodes.test.ts|1|||1s| |e2e/__tests__/compareDomNodes.test.ts|1✔️|||1s|
|e2e/__tests__/config.test.ts|6|||4s| |e2e/__tests__/config.test.ts|6✔️|||4s|
|e2e/__tests__/console.test.ts|7|||8s| |e2e/__tests__/console.test.ts|7✔️|||8s|
|e2e/__tests__/consoleAfterTeardown.test.ts|1|||1s| |e2e/__tests__/consoleAfterTeardown.test.ts|1✔️|||1s|
|e2e/__tests__/consoleLogOutputWhenRunInBand.test.ts|1|||793ms| |e2e/__tests__/consoleLogOutputWhenRunInBand.test.ts|1✔️|||793ms|
|e2e/__tests__/coverageHandlebars.test.ts|1|||2s| |e2e/__tests__/coverageHandlebars.test.ts|1✔️|||2s|
|e2e/__tests__/coverageRemapping.test.ts|1|||13s| |e2e/__tests__/coverageRemapping.test.ts|1✔️|||13s|
|e2e/__tests__/coverageReport.test.ts|12|||22s| |e2e/__tests__/coverageReport.test.ts|12✔️|||22s|
|e2e/__tests__/coverageThreshold.test.ts|5|||5s| |e2e/__tests__/coverageThreshold.test.ts|5✔️|||5s|
|e2e/__tests__/coverageTransformInstrumented.test.ts|1|||5s| |e2e/__tests__/coverageTransformInstrumented.test.ts|1✔️|||5s|
|e2e/__tests__/coverageWithoutTransform.test.ts|1|||1s| |e2e/__tests__/coverageWithoutTransform.test.ts|1✔️|||1s|
|e2e/__tests__/createProcessObject.test.ts|1|||908ms| |e2e/__tests__/createProcessObject.test.ts|1✔️|||908ms|
|e2e/__tests__/customInlineSnapshotMatchers.test.ts|1|||2s| |e2e/__tests__/customInlineSnapshotMatchers.test.ts|1✔️|||2s|
|e2e/__tests__/customMatcherStackTrace.test.ts|2|||2s| |e2e/__tests__/customMatcherStackTrace.test.ts|2✔️|||2s|
|e2e/__tests__/customReporters.test.ts|9|||7s| |e2e/__tests__/customReporters.test.ts|9✔️|||7s|
|e2e/__tests__/customResolver.test.ts|1|||826ms| |e2e/__tests__/customResolver.test.ts|1✔️|||826ms|
|e2e/__tests__/customTestSequencers.test.ts|3|||3s| |e2e/__tests__/customTestSequencers.test.ts|3✔️|||3s|
|e2e/__tests__/debug.test.ts|1|||899ms| |e2e/__tests__/debug.test.ts|1✔️|||899ms|
|e2e/__tests__/declarationErrors.test.ts|3|||2s| |e2e/__tests__/declarationErrors.test.ts|3✔️|||2s|
|e2e/__tests__/dependencyClash.test.ts|1|||833ms| |e2e/__tests__/dependencyClash.test.ts|1✔️|||833ms|
|e2e/__tests__/detectOpenHandles.ts|8|||8s| |e2e/__tests__/detectOpenHandles.ts|8✔️|||8s|
|e2e/__tests__/domDiffing.test.ts|1|||1s| |e2e/__tests__/domDiffing.test.ts|1✔️|||1s|
|e2e/__tests__/doneInHooks.test.ts|1|||855ms| |e2e/__tests__/doneInHooks.test.ts|1✔️|||855ms|
|e2e/__tests__/dynamicRequireDependencies.ts|1|||847ms| |e2e/__tests__/dynamicRequireDependencies.ts|1✔️|||847ms|
|e2e/__tests__/each.test.ts|7|||5s| |e2e/__tests__/each.test.ts|7✔️|||5s|
|e2e/__tests__/emptyDescribeWithHooks.test.ts|4|||3s| |e2e/__tests__/emptyDescribeWithHooks.test.ts|4✔️|||3s|
|e2e/__tests__/emptySuiteError.test.ts|1|||885ms| |e2e/__tests__/emptySuiteError.test.ts|1✔️|||885ms|
|e2e/__tests__/env.test.ts|6|||5s| |e2e/__tests__/env.test.ts|6✔️|||5s|
|e2e/__tests__/environmentAfterTeardown.test.ts|1|||892ms| |e2e/__tests__/environmentAfterTeardown.test.ts|1✔️|||892ms|
|e2e/__tests__/errorOnDeprecated.test.ts|1||24|56ms| |e2e/__tests__/errorOnDeprecated.test.ts|1✔️||24✖️|56ms|
|e2e/__tests__/esmConfigFile.test.ts|3|||526ms| |e2e/__tests__/esmConfigFile.test.ts|3✔️|||526ms|
|e2e/__tests__/executeTestsOnceInMpr.ts|1|||976ms| |e2e/__tests__/executeTestsOnceInMpr.ts|1✔️|||976ms|
|e2e/__tests__/existentRoots.test.ts|4|||627ms| |e2e/__tests__/existentRoots.test.ts|4✔️|||627ms|
|e2e/__tests__/expectAsyncMatcher.test.ts|2|||3s| |e2e/__tests__/expectAsyncMatcher.test.ts|2✔️|||3s|
|e2e/__tests__/expectInVm.test.ts|1|||2s| |e2e/__tests__/expectInVm.test.ts|1✔️|||2s|
|e2e/__tests__/extraGlobals.test.ts|1|||1s| |e2e/__tests__/extraGlobals.test.ts|1✔️|||1s|
|e2e/__tests__/failureDetailsProperty.test.ts|1|||907ms| |e2e/__tests__/failureDetailsProperty.test.ts|1✔️|||907ms|
|e2e/__tests__/failures.test.ts|7|||10s| |e2e/__tests__/failures.test.ts|7✔️|||10s|
|e2e/__tests__/fakePromises.test.ts|2|||2s| |e2e/__tests__/fakePromises.test.ts|2✔️|||2s|
|e2e/__tests__/fatalWorkerError.test.ts|1|||3s| |e2e/__tests__/fatalWorkerError.test.ts|1✔️|||3s|
|e2e/__tests__/filter.test.ts|7|||5s| |e2e/__tests__/filter.test.ts|7✔️|||5s|
|e2e/__tests__/findRelatedFiles.test.ts|5|||6s| |e2e/__tests__/findRelatedFiles.test.ts|5✔️|||6s|
|e2e/__tests__/focusedTests.test.ts|1|||888ms| |e2e/__tests__/focusedTests.test.ts|1✔️|||888ms|
|e2e/__tests__/forceExit.test.ts|1|||2s| |e2e/__tests__/forceExit.test.ts|1✔️|||2s|
|e2e/__tests__/generatorMock.test.ts|1|||1s| |e2e/__tests__/generatorMock.test.ts|1✔️|||1s|
|e2e/__tests__/global-mutation.test.ts|1|||40ms| |e2e/__tests__/global-mutation.test.ts|1✔️|||40ms|
|e2e/__tests__/global.test.ts|1|||31ms| |e2e/__tests__/global.test.ts|1✔️|||31ms|
|e2e/__tests__/globals.test.ts|10|||8s| |e2e/__tests__/globals.test.ts|10✔️|||8s|
|e2e/__tests__/globalSetup.test.ts|10|||14s| |e2e/__tests__/globalSetup.test.ts|10✔️|||14s|
|e2e/__tests__/globalTeardown.test.ts|7|||12s| |e2e/__tests__/globalTeardown.test.ts|7✔️|||12s|
|e2e/__tests__/hasteMapMockChanged.test.ts|1|||379ms| |e2e/__tests__/hasteMapMockChanged.test.ts|1✔️|||379ms|
|e2e/__tests__/hasteMapSha1.test.ts|1|||298ms| |e2e/__tests__/hasteMapSha1.test.ts|1✔️|||298ms|
|e2e/__tests__/hasteMapSize.test.ts|2|||397ms| |e2e/__tests__/hasteMapSize.test.ts|2✔️|||397ms|
|e2e/__tests__/importedGlobals.test.ts|1|||1s| |e2e/__tests__/importedGlobals.test.ts|1✔️|||1s|
|e2e/__tests__/injectGlobals.test.ts|2|||2s| |e2e/__tests__/injectGlobals.test.ts|2✔️|||2s|
|e2e/__tests__/jasmineAsync.test.ts|15|||28s| |e2e/__tests__/jasmineAsync.test.ts|15✔️|||28s|
|e2e/__tests__/jasmineAsyncWithPendingDuringTest.ts|1||1|72ms| |e2e/__tests__/jasmineAsyncWithPendingDuringTest.ts|1✔️||1✖️|72ms|
|e2e/__tests__/jest.config.js.test.ts|3|||2s| |e2e/__tests__/jest.config.js.test.ts|3✔️|||2s|
|e2e/__tests__/jest.config.ts.test.ts|5|||14s| |e2e/__tests__/jest.config.ts.test.ts|5✔️|||14s|
|[e2e/__tests__/jestChangedFiles.test.ts](#r0s75)|9|1❌||9s| |[e2e/__tests__/jestChangedFiles.test.ts](#r0s75)|9✔️|1❌||9s|
|e2e/__tests__/jestEnvironmentJsdom.test.ts|1|||2s| |e2e/__tests__/jestEnvironmentJsdom.test.ts|1✔️|||2s|
|e2e/__tests__/jestRequireActual.test.ts|1|||2s| |e2e/__tests__/jestRequireActual.test.ts|1✔️|||2s|
|e2e/__tests__/jestRequireMock.test.ts|1|||2s| |e2e/__tests__/jestRequireMock.test.ts|1✔️|||2s|
|e2e/__tests__/json.test.ts|2|||29ms| |e2e/__tests__/json.test.ts|2✔️|||29ms|
|e2e/__tests__/jsonReporter.test.ts|2|||2s| |e2e/__tests__/jsonReporter.test.ts|2✔️|||2s|
|e2e/__tests__/lifecycles.ts|1|||861ms| |e2e/__tests__/lifecycles.ts|1✔️|||861ms|
|e2e/__tests__/listTests.test.ts|2|||945ms| |e2e/__tests__/listTests.test.ts|2✔️|||945ms|
|e2e/__tests__/locationInResults.test.ts|2|||2s| |e2e/__tests__/locationInResults.test.ts|2✔️|||2s|
|e2e/__tests__/logHeapUsage.test.ts|1|||884ms| |e2e/__tests__/logHeapUsage.test.ts|1✔️|||884ms|
|e2e/__tests__/mockNames.test.ts|8|||7s| |e2e/__tests__/mockNames.test.ts|8✔️|||7s|
|e2e/__tests__/modernFakeTimers.test.ts|2|||2s| |e2e/__tests__/modernFakeTimers.test.ts|2✔️|||2s|
|e2e/__tests__/moduleNameMapper.test.ts|5|||5s| |e2e/__tests__/moduleNameMapper.test.ts|5✔️|||5s|
|e2e/__tests__/moduleParentNullInTest.ts|1|||886ms| |e2e/__tests__/moduleParentNullInTest.ts|1✔️|||886ms|
|e2e/__tests__/multiProjectRunner.test.ts|14|||16s| |e2e/__tests__/multiProjectRunner.test.ts|14✔️|||16s|
|e2e/__tests__/nativeAsyncMock.test.ts|1|||55ms| |e2e/__tests__/nativeAsyncMock.test.ts|1✔️|||55ms|
|e2e/__tests__/nativeEsm.test.ts|2||1|905ms| |e2e/__tests__/nativeEsm.test.ts|2✔️||1✖️|905ms|
|e2e/__tests__/nativeEsmTypescript.test.ts|1|||956ms| |e2e/__tests__/nativeEsmTypescript.test.ts|1✔️|||956ms|
|e2e/__tests__/nestedEventLoop.test.ts|1|||1s| |e2e/__tests__/nestedEventLoop.test.ts|1✔️|||1s|
|e2e/__tests__/nestedTestDefinitions.test.ts|4|||5s| |e2e/__tests__/nestedTestDefinitions.test.ts|4✔️|||5s|
|e2e/__tests__/nodePath.test.ts|1|||866ms| |e2e/__tests__/nodePath.test.ts|1✔️|||866ms|
|e2e/__tests__/noTestFound.test.ts|2|||1s| |e2e/__tests__/noTestFound.test.ts|2✔️|||1s|
|e2e/__tests__/noTestsFound.test.ts|5|||3s| |e2e/__tests__/noTestsFound.test.ts|5✔️|||3s|
|[e2e/__tests__/onlyChanged.test.ts](#r0s98)|8|1❌||22s| |[e2e/__tests__/onlyChanged.test.ts](#r0s98)|8✔️|1❌||22s|
|e2e/__tests__/onlyFailuresNonWatch.test.ts|1|||3s| |e2e/__tests__/onlyFailuresNonWatch.test.ts|1✔️|||3s|
|e2e/__tests__/overrideGlobals.test.ts|2|||2s| |e2e/__tests__/overrideGlobals.test.ts|2✔️|||2s|
|e2e/__tests__/pnp.test.ts|1|||3s| |e2e/__tests__/pnp.test.ts|1✔️|||3s|
|e2e/__tests__/presets.test.ts|2|||2s| |e2e/__tests__/presets.test.ts|2✔️|||2s|
|e2e/__tests__/processExit.test.ts|1|||1s| |e2e/__tests__/processExit.test.ts|1✔️|||1s|
|e2e/__tests__/promiseReject.test.ts|1|||967ms| |e2e/__tests__/promiseReject.test.ts|1✔️|||967ms|
|e2e/__tests__/regexCharInPath.test.ts|1|||962ms| |e2e/__tests__/regexCharInPath.test.ts|1✔️|||962ms|
|e2e/__tests__/requireAfterTeardown.test.ts|1|||921ms| |e2e/__tests__/requireAfterTeardown.test.ts|1✔️|||921ms|
|e2e/__tests__/requireMain.test.ts|1|||1s| |e2e/__tests__/requireMain.test.ts|1✔️|||1s|
|e2e/__tests__/requireMainAfterCreateRequire.test.ts|1|||966ms| |e2e/__tests__/requireMainAfterCreateRequire.test.ts|1✔️|||966ms|
|e2e/__tests__/requireMainIsolateModules.test.ts|1|||976ms| |e2e/__tests__/requireMainIsolateModules.test.ts|1✔️|||976ms|
|e2e/__tests__/requireMainResetModules.test.ts|2|||2s| |e2e/__tests__/requireMainResetModules.test.ts|2✔️|||2s|
|e2e/__tests__/requireV8Module.test.ts|1|||30ms| |e2e/__tests__/requireV8Module.test.ts|1✔️|||30ms|
|e2e/__tests__/resetModules.test.ts|1|||926ms| |e2e/__tests__/resetModules.test.ts|1✔️|||926ms|
|e2e/__tests__/resolve.test.ts|1|||2s| |e2e/__tests__/resolve.test.ts|1✔️|||2s|
|e2e/__tests__/resolveGetPaths.test.ts|1|||1s| |e2e/__tests__/resolveGetPaths.test.ts|1✔️|||1s|
|e2e/__tests__/resolveNodeModule.test.ts|1|||943ms| |e2e/__tests__/resolveNodeModule.test.ts|1✔️|||943ms|
|e2e/__tests__/resolveNoFileExtensions.test.ts|2|||1s| |e2e/__tests__/resolveNoFileExtensions.test.ts|2✔️|||1s|
|e2e/__tests__/resolveWithPaths.test.ts|1|||1s| |e2e/__tests__/resolveWithPaths.test.ts|1✔️|||1s|
|e2e/__tests__/runProgrammatically.test.ts|2|||575ms| |e2e/__tests__/runProgrammatically.test.ts|2✔️|||575ms|
|e2e/__tests__/runTestsByPath.test.ts|1|||2s| |e2e/__tests__/runTestsByPath.test.ts|1✔️|||2s|
|e2e/__tests__/runtimeInternalModuleRegistry.test.ts|1|||1s| |e2e/__tests__/runtimeInternalModuleRegistry.test.ts|1✔️|||1s|
|e2e/__tests__/selectProjects.test.ts|18|||5s| |e2e/__tests__/selectProjects.test.ts|18✔️|||5s|
|e2e/__tests__/setImmediate.test.ts|1|||904ms| |e2e/__tests__/setImmediate.test.ts|1✔️|||904ms|
|e2e/__tests__/setupFilesAfterEnvConfig.test.ts|2|||2s| |e2e/__tests__/setupFilesAfterEnvConfig.test.ts|2✔️|||2s|
|e2e/__tests__/showConfig.test.ts|1|||195ms| |e2e/__tests__/showConfig.test.ts|1✔️|||195ms|
|e2e/__tests__/skipBeforeAfterAll.test.ts|1|||1s| |e2e/__tests__/skipBeforeAfterAll.test.ts|1✔️|||1s|
|e2e/__tests__/snapshot-unknown.test.ts|1|||838ms| |e2e/__tests__/snapshot-unknown.test.ts|1✔️|||838ms|
|e2e/__tests__/snapshot.test.ts|9|||14s| |e2e/__tests__/snapshot.test.ts|9✔️|||14s|
|e2e/__tests__/snapshotMockFs.test.ts|1|||883ms| |e2e/__tests__/snapshotMockFs.test.ts|1✔️|||883ms|
|e2e/__tests__/snapshotResolver.test.ts|1|||823ms| |e2e/__tests__/snapshotResolver.test.ts|1✔️|||823ms|
|e2e/__tests__/snapshotSerializers.test.ts|2|||2s| |e2e/__tests__/snapshotSerializers.test.ts|2✔️|||2s|
|e2e/__tests__/stackTrace.test.ts|7|||5s| |e2e/__tests__/stackTrace.test.ts|7✔️|||5s|
|e2e/__tests__/stackTraceNoCaptureStackTrace.test.ts|1|||899ms| |e2e/__tests__/stackTraceNoCaptureStackTrace.test.ts|1✔️|||899ms|
|e2e/__tests__/stackTraceSourceMaps.test.ts|1|||2s| |e2e/__tests__/stackTraceSourceMaps.test.ts|1✔️|||2s|
|e2e/__tests__/stackTraceSourceMapsWithCoverage.test.ts|1|||2s| |e2e/__tests__/stackTraceSourceMapsWithCoverage.test.ts|1✔️|||2s|
|e2e/__tests__/supportsDashedArgs.ts|2|||968ms| |e2e/__tests__/supportsDashedArgs.ts|2✔️|||968ms|
|e2e/__tests__/symbol.test.ts|1|||49ms| |e2e/__tests__/symbol.test.ts|1✔️|||49ms|
|e2e/__tests__/testEnvironment.test.ts|1|||2s| |e2e/__tests__/testEnvironment.test.ts|1✔️|||2s|
|e2e/__tests__/testEnvironmentAsync.test.ts|1|||1s| |e2e/__tests__/testEnvironmentAsync.test.ts|1✔️|||1s|
|e2e/__tests__/testEnvironmentCircus.test.ts|1|||2s| |e2e/__tests__/testEnvironmentCircus.test.ts|1✔️|||2s|
|e2e/__tests__/testEnvironmentCircusAsync.test.ts|1|||2s| |e2e/__tests__/testEnvironmentCircusAsync.test.ts|1✔️|||2s|
|e2e/__tests__/testFailureExitCode.test.ts|2|||4s| |e2e/__tests__/testFailureExitCode.test.ts|2✔️|||4s|
|e2e/__tests__/testInRoot.test.ts|1|||1s| |e2e/__tests__/testInRoot.test.ts|1✔️|||1s|
|e2e/__tests__/testNamePattern.test.ts|1|||859ms| |e2e/__tests__/testNamePattern.test.ts|1✔️|||859ms|
|e2e/__tests__/testNamePatternSkipped.test.ts|1|||991ms| |e2e/__tests__/testNamePatternSkipped.test.ts|1✔️|||991ms|
|e2e/__tests__/testPathPatternReporterMessage.test.ts|1|||3s| |e2e/__tests__/testPathPatternReporterMessage.test.ts|1✔️|||3s|
|e2e/__tests__/testResultsProcessor.test.ts|1|||910ms| |e2e/__tests__/testResultsProcessor.test.ts|1✔️|||910ms|
|e2e/__tests__/testRetries.test.ts|4|||3s| |e2e/__tests__/testRetries.test.ts|4✔️|||3s|
|e2e/__tests__/testTodo.test.ts|5|||4s| |e2e/__tests__/testTodo.test.ts|5✔️|||4s|
|e2e/__tests__/timeouts.test.ts|4|||4s| |e2e/__tests__/timeouts.test.ts|4✔️|||4s|
|e2e/__tests__/timeoutsLegacy.test.ts|1||3|71ms| |e2e/__tests__/timeoutsLegacy.test.ts|1✔️||3✖️|71ms|
|e2e/__tests__/timerResetMocks.test.ts|2|||2s| |e2e/__tests__/timerResetMocks.test.ts|2✔️|||2s|
|e2e/__tests__/timerUseRealTimers.test.ts|1|||1s| |e2e/__tests__/timerUseRealTimers.test.ts|1✔️|||1s|
|e2e/__tests__/toMatchInlineSnapshot.test.ts|12|||24s| |e2e/__tests__/toMatchInlineSnapshot.test.ts|12✔️|||24s|
|e2e/__tests__/toMatchInlineSnapshotWithRetries.test.ts|3|||5s| |e2e/__tests__/toMatchInlineSnapshotWithRetries.test.ts|3✔️|||5s|
|e2e/__tests__/toMatchSnapshot.test.ts|9|||17s| |e2e/__tests__/toMatchSnapshot.test.ts|9✔️|||17s|
|e2e/__tests__/toMatchSnapshotWithRetries.test.ts|2|||4s| |e2e/__tests__/toMatchSnapshotWithRetries.test.ts|2✔️|||4s|
|e2e/__tests__/toMatchSnapshotWithStringSerializer.test.ts|3|||4s| |e2e/__tests__/toMatchSnapshotWithStringSerializer.test.ts|3✔️|||4s|
|e2e/__tests__/toThrowErrorMatchingInlineSnapshot.test.ts|4|||4s| |e2e/__tests__/toThrowErrorMatchingInlineSnapshot.test.ts|4✔️|||4s|
|e2e/__tests__/toThrowErrorMatchingSnapshot.test.ts|5|||4s| |e2e/__tests__/toThrowErrorMatchingSnapshot.test.ts|5✔️|||4s|
|e2e/__tests__/transform.test.ts|16|||27s| |e2e/__tests__/transform.test.ts|16✔️|||27s|
|e2e/__tests__/transformLinkedModules.test.ts|1|||783ms| |e2e/__tests__/transformLinkedModules.test.ts|1✔️|||783ms|
|e2e/__tests__/typescriptCoverage.test.ts|1|||3s| |e2e/__tests__/typescriptCoverage.test.ts|1✔️|||3s|
|e2e/__tests__/unexpectedToken.test.ts|3|||3s| |e2e/__tests__/unexpectedToken.test.ts|3✔️|||3s|
|e2e/__tests__/useStderr.test.ts|1|||1s| |e2e/__tests__/useStderr.test.ts|1✔️|||1s|
|e2e/__tests__/v8Coverage.test.ts|2|||2s| |e2e/__tests__/v8Coverage.test.ts|2✔️|||2s|
|e2e/__tests__/verbose.test.ts|1|||683ms| |e2e/__tests__/verbose.test.ts|1✔️|||683ms|
|e2e/__tests__/version.test.ts|1|||138ms| |e2e/__tests__/version.test.ts|1✔️|||138ms|
|e2e/__tests__/watchModeNoAccess.test.ts|1|||4s| |e2e/__tests__/watchModeNoAccess.test.ts|1✔️|||4s|
|e2e/__tests__/watchModeOnlyFailed.test.ts|1|||1s| |e2e/__tests__/watchModeOnlyFailed.test.ts|1✔️|||1s|
|e2e/__tests__/watchModePatterns.test.ts|2|||4s| |e2e/__tests__/watchModePatterns.test.ts|2✔️|||4s|
|e2e/__tests__/watchModeUpdateSnapshot.test.ts|1|||1s| |e2e/__tests__/watchModeUpdateSnapshot.test.ts|1✔️|||1s|
|e2e/__tests__/workerForceExit.test.ts|2|||5s| |e2e/__tests__/workerForceExit.test.ts|2✔️|||5s|
|e2e/__tests__/wrongEnv.test.ts|5|||4s| |e2e/__tests__/wrongEnv.test.ts|5✔️|||4s|
|e2e/custom-test-sequencer/a.test.js|1|||29ms| |e2e/custom-test-sequencer/a.test.js|1✔️|||29ms|
|e2e/custom-test-sequencer/b.test.js|1|||21ms| |e2e/custom-test-sequencer/b.test.js|1✔️|||21ms|
|e2e/custom-test-sequencer/c.test.js|1|||42ms| |e2e/custom-test-sequencer/c.test.js|1✔️|||42ms|
|e2e/custom-test-sequencer/d.test.js|1|||21ms| |e2e/custom-test-sequencer/d.test.js|1✔️|||21ms|
|e2e/custom-test-sequencer/e.test.js|1|||27ms| |e2e/custom-test-sequencer/e.test.js|1✔️|||27ms|
|e2e/test-in-root/spec.js|1|||19ms| |e2e/test-in-root/spec.js|1✔️|||19ms|
|e2e/test-in-root/test.js|1|||37ms| |e2e/test-in-root/test.js|1✔️|||37ms|
|e2e/timer-reset-mocks/after-reset-all-mocks/timerAndMock.test.js|2|||30ms| |e2e/timer-reset-mocks/after-reset-all-mocks/timerAndMock.test.js|2✔️|||30ms|
|e2e/timer-reset-mocks/with-reset-mocks/timerWithMock.test.js|1|||34ms| |e2e/timer-reset-mocks/with-reset-mocks/timerWithMock.test.js|1✔️|||34ms|
|e2e/v8-coverage/empty-sourcemap/test.ts|1|||31ms| |e2e/v8-coverage/empty-sourcemap/test.ts|1✔️|||31ms|
|examples/angular/app.component.spec.ts|3|||654ms| |examples/angular/app.component.spec.ts|3✔️|||654ms|
|examples/angular/shared/data.service.spec.ts|2|||431ms| |examples/angular/shared/data.service.spec.ts|2✔️|||431ms|
|examples/angular/shared/sub.service.spec.ts|1|||109ms| |examples/angular/shared/sub.service.spec.ts|1✔️|||109ms|
|examples/async/__tests__/user.test.js|8|||96ms| |examples/async/__tests__/user.test.js|8✔️|||96ms|
|examples/automatic-mocks/__tests__/automock.test.js|2|||74ms| |examples/automatic-mocks/__tests__/automock.test.js|2✔️|||74ms|
|examples/automatic-mocks/__tests__/createMockFromModule.test.js|2|||115ms| |examples/automatic-mocks/__tests__/createMockFromModule.test.js|2✔️|||115ms|
|examples/automatic-mocks/__tests__/disableAutomocking.test.js|1|||24ms| |examples/automatic-mocks/__tests__/disableAutomocking.test.js|1✔️|||24ms|
|examples/enzyme/__tests__/CheckboxWithLabel-test.js|1|||434ms| |examples/enzyme/__tests__/CheckboxWithLabel-test.js|1✔️|||434ms|
|examples/getting-started/sum.test.js|1|||78ms| |examples/getting-started/sum.test.js|1✔️|||78ms|
|examples/jquery/__tests__/display_user.test.js|1|||196ms| |examples/jquery/__tests__/display_user.test.js|1✔️|||196ms|
|examples/jquery/__tests__/fetch_current_user.test.js|2|||196ms| |examples/jquery/__tests__/fetch_current_user.test.js|2✔️|||196ms|
|examples/manual-mocks/__tests__/file_summarizer.test.js|1|||87ms| |examples/manual-mocks/__tests__/file_summarizer.test.js|1✔️|||87ms|
|examples/manual-mocks/__tests__/lodashMocking.test.js|1|||109ms| |examples/manual-mocks/__tests__/lodashMocking.test.js|1✔️|||109ms|
|examples/manual-mocks/__tests__/user.test.js|1|||41ms| |examples/manual-mocks/__tests__/user.test.js|1✔️|||41ms|
|examples/manual-mocks/__tests__/userMocked.test.js|1|||105ms| |examples/manual-mocks/__tests__/userMocked.test.js|1✔️|||105ms|
|examples/module-mock/__tests__/full_mock.js|1|||60ms| |examples/module-mock/__tests__/full_mock.js|1✔️|||60ms|
|examples/module-mock/__tests__/mock_per_test.js|2|||116ms| |examples/module-mock/__tests__/mock_per_test.js|2✔️|||116ms|
|examples/module-mock/__tests__/partial_mock.js|1|||215ms| |examples/module-mock/__tests__/partial_mock.js|1✔️|||215ms|
|examples/mongodb/__test__/db.test.js|1|||236ms| |examples/mongodb/__test__/db.test.js|1✔️|||236ms|
|examples/react-native/__tests__/intro.test.js|4|||9s| |examples/react-native/__tests__/intro.test.js|4✔️|||9s|
|examples/react-testing-library/__tests__/CheckboxWithLabel-test.js|1|||469ms| |examples/react-testing-library/__tests__/CheckboxWithLabel-test.js|1✔️|||469ms|
|examples/react/__tests__/CheckboxWithLabel-test.js|1|||256ms| |examples/react/__tests__/CheckboxWithLabel-test.js|1✔️|||256ms|
|examples/snapshot/__tests__/clock.react.test.js|1|||62ms| |examples/snapshot/__tests__/clock.react.test.js|1✔️|||62ms|
|examples/snapshot/__tests__/link.react.test.js|4|||181ms| |examples/snapshot/__tests__/link.react.test.js|4✔️|||181ms|
|examples/timer/__tests__/infinite_timer_game.test.js|1|||94ms| |examples/timer/__tests__/infinite_timer_game.test.js|1✔️|||94ms|
|examples/timer/__tests__/timer_game.test.js|3|||74ms| |examples/timer/__tests__/timer_game.test.js|3✔️|||74ms|
|examples/typescript/__tests__/calc.test.ts|6|||276ms| |examples/typescript/__tests__/calc.test.ts|6✔️|||276ms|
|examples/typescript/__tests__/CheckboxWithLabel-test.tsx|1|||227ms| |examples/typescript/__tests__/CheckboxWithLabel-test.tsx|1✔️|||227ms|
|examples/typescript/__tests__/sub-test.ts|1|||43ms| |examples/typescript/__tests__/sub-test.ts|1✔️|||43ms|
|examples/typescript/__tests__/sum-test.ts|2|||69ms| |examples/typescript/__tests__/sum-test.ts|2✔️|||69ms|
|examples/typescript/__tests__/sum.test.js|2|||100ms| |examples/typescript/__tests__/sum.test.js|2✔️|||100ms|
|packages/babel-jest/src/__tests__/index.ts|6|||371ms| |packages/babel-jest/src/__tests__/index.ts|6✔️|||371ms|
|packages/babel-plugin-jest-hoist/src/__tests__/hoistPlugin.test.ts|4|||347ms| |packages/babel-plugin-jest-hoist/src/__tests__/hoistPlugin.test.ts|4✔️|||347ms|
|packages/diff-sequences/src/__tests__/index.property.test.ts|7|||357ms| |packages/diff-sequences/src/__tests__/index.property.test.ts|7✔️|||357ms|
|packages/diff-sequences/src/__tests__/index.test.ts|48|||195ms| |packages/diff-sequences/src/__tests__/index.test.ts|48✔️|||195ms|
|packages/expect/src/__tests__/assertionCounts.test.ts|6|||60ms| |packages/expect/src/__tests__/assertionCounts.test.ts|6✔️|||60ms|
|packages/expect/src/__tests__/asymmetricMatchers.test.ts|38|||207ms| |packages/expect/src/__tests__/asymmetricMatchers.test.ts|38✔️|||207ms|
|packages/expect/src/__tests__/extend.test.ts|10|||99ms| |packages/expect/src/__tests__/extend.test.ts|10✔️|||99ms|
|packages/expect/src/__tests__/isError.test.ts|4|||43ms| |packages/expect/src/__tests__/isError.test.ts|4✔️|||43ms|
|packages/expect/src/__tests__/matchers-toContain.property.test.ts|2|||236ms| |packages/expect/src/__tests__/matchers-toContain.property.test.ts|2✔️|||236ms|
|packages/expect/src/__tests__/matchers-toContainEqual.property.test.ts|2|||287ms| |packages/expect/src/__tests__/matchers-toContainEqual.property.test.ts|2✔️|||287ms|
|packages/expect/src/__tests__/matchers-toEqual.property.test.ts|2|||1s| |packages/expect/src/__tests__/matchers-toEqual.property.test.ts|2✔️|||1s|
|packages/expect/src/__tests__/matchers-toStrictEqual.property.test.ts|3|||394ms| |packages/expect/src/__tests__/matchers-toStrictEqual.property.test.ts|3✔️|||394ms|
|packages/expect/src/__tests__/matchers.test.js|592|||862ms| |packages/expect/src/__tests__/matchers.test.js|592✔️|||862ms|
|packages/expect/src/__tests__/spyMatchers.test.ts|248|||395ms| |packages/expect/src/__tests__/spyMatchers.test.ts|248✔️|||395ms|
|packages/expect/src/__tests__/stacktrace.test.ts|3|||69ms| |packages/expect/src/__tests__/stacktrace.test.ts|3✔️|||69ms|
|packages/expect/src/__tests__/symbolInObjects.test.ts|3|||33ms| |packages/expect/src/__tests__/symbolInObjects.test.ts|3✔️|||33ms|
|packages/expect/src/__tests__/toEqual-dom.test.ts|12|||99ms| |packages/expect/src/__tests__/toEqual-dom.test.ts|12✔️|||99ms|
|packages/expect/src/__tests__/toThrowMatchers.test.ts|98|||257ms| |packages/expect/src/__tests__/toThrowMatchers.test.ts|98✔️|||257ms|
|packages/expect/src/__tests__/utils.test.ts|41|||147ms| |packages/expect/src/__tests__/utils.test.ts|41✔️|||147ms|
|packages/jest-circus/src/__tests__/afterAll.test.ts|6|||6s| |packages/jest-circus/src/__tests__/afterAll.test.ts|6✔️|||6s|
|packages/jest-circus/src/__tests__/baseTest.test.ts|2|||3s| |packages/jest-circus/src/__tests__/baseTest.test.ts|2✔️|||3s|
|packages/jest-circus/src/__tests__/circusItTestError.test.ts|8|||300ms| |packages/jest-circus/src/__tests__/circusItTestError.test.ts|8✔️|||300ms|
|packages/jest-circus/src/__tests__/circusItTodoTestError.test.ts|3|||81ms| |packages/jest-circus/src/__tests__/circusItTodoTestError.test.ts|3✔️|||81ms|
|packages/jest-circus/src/__tests__/hooks.test.ts|3|||4s| |packages/jest-circus/src/__tests__/hooks.test.ts|3✔️|||4s|
|packages/jest-circus/src/__tests__/hooksError.test.ts|32|||127ms| |packages/jest-circus/src/__tests__/hooksError.test.ts|32✔️|||127ms|
|packages/jest-cli/src/__tests__/cli/args.test.ts|17|||345ms| |packages/jest-cli/src/__tests__/cli/args.test.ts|17✔️|||345ms|
|packages/jest-cli/src/init/__tests__/init.test.js|24|||119ms| |packages/jest-cli/src/init/__tests__/init.test.js|24✔️|||119ms|
|packages/jest-cli/src/init/__tests__/modifyPackageJson.test.ts|4|||30ms| |packages/jest-cli/src/init/__tests__/modifyPackageJson.test.ts|4✔️|||30ms|
|packages/jest-config/src/__tests__/Defaults.test.ts|1|||672ms| |packages/jest-config/src/__tests__/Defaults.test.ts|1✔️|||672ms|
|packages/jest-config/src/__tests__/getMaxWorkers.test.ts|7|||67ms| |packages/jest-config/src/__tests__/getMaxWorkers.test.ts|7✔️|||67ms|
|packages/jest-config/src/__tests__/normalize.test.js|118|||798ms| |packages/jest-config/src/__tests__/normalize.test.js|118✔️|||798ms|
|packages/jest-config/src/__tests__/readConfig.test.ts|1|||76ms| |packages/jest-config/src/__tests__/readConfig.test.ts|1✔️|||76ms|
|packages/jest-config/src/__tests__/readConfigs.test.ts|3|||135ms| |packages/jest-config/src/__tests__/readConfigs.test.ts|3✔️|||135ms|
|packages/jest-config/src/__tests__/resolveConfigPath.test.ts|10|||183ms| |packages/jest-config/src/__tests__/resolveConfigPath.test.ts|10✔️|||183ms|
|packages/jest-config/src/__tests__/setFromArgv.test.ts|4|||53ms| |packages/jest-config/src/__tests__/setFromArgv.test.ts|4✔️|||53ms|
|packages/jest-config/src/__tests__/validatePattern.test.ts|4|||52ms| |packages/jest-config/src/__tests__/validatePattern.test.ts|4✔️|||52ms|
|packages/jest-console/src/__tests__/bufferedConsole.test.ts|20|||171ms| |packages/jest-console/src/__tests__/bufferedConsole.test.ts|20✔️|||171ms|
|packages/jest-console/src/__tests__/CustomConsole.test.ts|23|||115ms| |packages/jest-console/src/__tests__/CustomConsole.test.ts|23✔️|||115ms|
|packages/jest-console/src/__tests__/getConsoleOutput.test.ts|12|||56ms| |packages/jest-console/src/__tests__/getConsoleOutput.test.ts|12✔️|||56ms|
|packages/jest-core/src/__tests__/FailedTestsCache.test.js|1|||25ms| |packages/jest-core/src/__tests__/FailedTestsCache.test.js|1✔️|||25ms|
|packages/jest-core/src/__tests__/getNoTestsFoundMessage.test.js|5|||61ms| |packages/jest-core/src/__tests__/getNoTestsFoundMessage.test.js|5✔️|||61ms|
|packages/jest-core/src/__tests__/globals.test.ts|1|||22ms| |packages/jest-core/src/__tests__/globals.test.ts|1✔️|||22ms|
|packages/jest-core/src/__tests__/runJest.test.js|2|||261ms| |packages/jest-core/src/__tests__/runJest.test.js|2✔️|||261ms|
|packages/jest-core/src/__tests__/SearchSource.test.ts|27|||3s| |packages/jest-core/src/__tests__/SearchSource.test.ts|27✔️|||3s|
|packages/jest-core/src/__tests__/SnapshotInteractiveMode.test.js|13|||89ms| |packages/jest-core/src/__tests__/SnapshotInteractiveMode.test.js|13✔️|||89ms|
|packages/jest-core/src/__tests__/TestScheduler.test.js|8|||520ms| |packages/jest-core/src/__tests__/TestScheduler.test.js|8✔️|||520ms|
|packages/jest-core/src/__tests__/testSchedulerHelper.test.js|12|||48ms| |packages/jest-core/src/__tests__/testSchedulerHelper.test.js|12✔️|||48ms|
|packages/jest-core/src/__tests__/watch.test.js|80|||7s| |packages/jest-core/src/__tests__/watch.test.js|80✔️|||7s|
|packages/jest-core/src/__tests__/watchFileChanges.test.ts|1|||2s| |packages/jest-core/src/__tests__/watchFileChanges.test.ts|1✔️|||2s|
|packages/jest-core/src/__tests__/watchFilenamePatternMode.test.js|2|||165ms| |packages/jest-core/src/__tests__/watchFilenamePatternMode.test.js|2✔️|||165ms|
|packages/jest-core/src/__tests__/watchTestNamePatternMode.test.js|1|||246ms| |packages/jest-core/src/__tests__/watchTestNamePatternMode.test.js|1✔️|||246ms|
|packages/jest-core/src/lib/__tests__/isValidPath.test.ts|3|||166ms| |packages/jest-core/src/lib/__tests__/isValidPath.test.ts|3✔️|||166ms|
|packages/jest-core/src/lib/__tests__/logDebugMessages.test.ts|3|||48ms| |packages/jest-core/src/lib/__tests__/logDebugMessages.test.ts|3✔️|||48ms|
|packages/jest-create-cache-key-function/src/__tests__/index.test.ts|1|||75ms| |packages/jest-create-cache-key-function/src/__tests__/index.test.ts|1✔️|||75ms|
|packages/jest-diff/src/__tests__/diff.test.ts|107|||625ms| |packages/jest-diff/src/__tests__/diff.test.ts|107✔️|||625ms|
|packages/jest-diff/src/__tests__/diffStringsRaw.test.ts|2|||55ms| |packages/jest-diff/src/__tests__/diffStringsRaw.test.ts|2✔️|||55ms|
|packages/jest-diff/src/__tests__/getAlignedDiffs.test.ts|24|||72ms| |packages/jest-diff/src/__tests__/getAlignedDiffs.test.ts|24✔️|||72ms|
|packages/jest-diff/src/__tests__/joinAlignedDiffs.test.ts|6|||44ms| |packages/jest-diff/src/__tests__/joinAlignedDiffs.test.ts|6✔️|||44ms|
|packages/jest-docblock/src/__tests__/index.test.ts|36|||177ms| |packages/jest-docblock/src/__tests__/index.test.ts|36✔️|||177ms|
|packages/jest-each/src/__tests__/array.test.ts|159|||192ms| |packages/jest-each/src/__tests__/array.test.ts|159✔️|||192ms|
|packages/jest-each/src/__tests__/index.test.ts|10|||44ms| |packages/jest-each/src/__tests__/index.test.ts|10✔️|||44ms|
|packages/jest-each/src/__tests__/template.test.ts|242|||483ms| |packages/jest-each/src/__tests__/template.test.ts|242✔️|||483ms|
|packages/jest-environment-jsdom/src/__tests__/jsdom_environment.test.ts|2|||783ms| |packages/jest-environment-jsdom/src/__tests__/jsdom_environment.test.ts|2✔️|||783ms|
|packages/jest-environment-node/src/__tests__/node_environment.test.ts|6|||184ms| |packages/jest-environment-node/src/__tests__/node_environment.test.ts|6✔️|||184ms|
|packages/jest-fake-timers/src/__tests__/legacyFakeTimers.test.ts|50|||302ms| |packages/jest-fake-timers/src/__tests__/legacyFakeTimers.test.ts|50✔️|||302ms|
|packages/jest-fake-timers/src/__tests__/modernFakeTimers.test.ts|40|||317ms| |packages/jest-fake-timers/src/__tests__/modernFakeTimers.test.ts|40✔️|||317ms|
|packages/jest-get-type/src/__tests__/getType.test.ts|14|||45ms| |packages/jest-get-type/src/__tests__/getType.test.ts|14✔️|||45ms|
|packages/jest-get-type/src/__tests__/isPrimitive.test.ts|18|||36ms| |packages/jest-get-type/src/__tests__/isPrimitive.test.ts|18✔️|||36ms|
|packages/jest-globals/src/__tests__/index.ts|1|||533ms| |packages/jest-globals/src/__tests__/index.ts|1✔️|||533ms|
|packages/jest-haste-map/src/__tests__/get_mock_name.test.js|1|||22ms| |packages/jest-haste-map/src/__tests__/get_mock_name.test.js|1✔️|||22ms|
|packages/jest-haste-map/src/__tests__/includes_dotfiles.test.ts|1|||337ms| |packages/jest-haste-map/src/__tests__/includes_dotfiles.test.ts|1✔️|||337ms|
|packages/jest-haste-map/src/__tests__/index.test.js|44|||1s| |packages/jest-haste-map/src/__tests__/index.test.js|44✔️|||1s|
|packages/jest-haste-map/src/__tests__/worker.test.js|7|||100ms| |packages/jest-haste-map/src/__tests__/worker.test.js|7✔️|||100ms|
|packages/jest-haste-map/src/crawlers/__tests__/node.test.js|10|||170ms| |packages/jest-haste-map/src/crawlers/__tests__/node.test.js|10✔️|||170ms|
|packages/jest-haste-map/src/crawlers/__tests__/watchman.test.js|8|||153ms| |packages/jest-haste-map/src/crawlers/__tests__/watchman.test.js|8✔️|||153ms|
|packages/jest-haste-map/src/lib/__tests__/dependencyExtractor.test.js|15|||56ms| |packages/jest-haste-map/src/lib/__tests__/dependencyExtractor.test.js|15✔️|||56ms|
|packages/jest-haste-map/src/lib/__tests__/fast_path.test.js|5|||29ms| |packages/jest-haste-map/src/lib/__tests__/fast_path.test.js|5✔️|||29ms|
|packages/jest-haste-map/src/lib/__tests__/getPlatformExtension.test.js|1|||35ms| |packages/jest-haste-map/src/lib/__tests__/getPlatformExtension.test.js|1✔️|||35ms|
|packages/jest-haste-map/src/lib/__tests__/isRegExpSupported.test.js|2|||31ms| |packages/jest-haste-map/src/lib/__tests__/isRegExpSupported.test.js|2✔️|||31ms|
|packages/jest-haste-map/src/lib/__tests__/normalizePathSep.test.js|2|||35ms| |packages/jest-haste-map/src/lib/__tests__/normalizePathSep.test.js|2✔️|||35ms|
|packages/jest-jasmine2/src/__tests__/concurrent.test.ts|3|||24ms| |packages/jest-jasmine2/src/__tests__/concurrent.test.ts|3✔️|||24ms|
|packages/jest-jasmine2/src/__tests__/expectationResultFactory.test.ts|7|||70ms| |packages/jest-jasmine2/src/__tests__/expectationResultFactory.test.ts|7✔️|||70ms|
|packages/jest-jasmine2/src/__tests__/hooksError.test.ts|32|||51ms| |packages/jest-jasmine2/src/__tests__/hooksError.test.ts|32✔️|||51ms|
|packages/jest-jasmine2/src/__tests__/iterators.test.ts|4|||43ms| |packages/jest-jasmine2/src/__tests__/iterators.test.ts|4✔️|||43ms|
|packages/jest-jasmine2/src/__tests__/itTestError.test.ts|6|||32ms| |packages/jest-jasmine2/src/__tests__/itTestError.test.ts|6✔️|||32ms|
|packages/jest-jasmine2/src/__tests__/itToTestAlias.test.ts|1|||23ms| |packages/jest-jasmine2/src/__tests__/itToTestAlias.test.ts|1✔️|||23ms|
|packages/jest-jasmine2/src/__tests__/pTimeout.test.ts|3|||44ms| |packages/jest-jasmine2/src/__tests__/pTimeout.test.ts|3✔️|||44ms|
|packages/jest-jasmine2/src/__tests__/queueRunner.test.ts|6|||93ms| |packages/jest-jasmine2/src/__tests__/queueRunner.test.ts|6✔️|||93ms|
|packages/jest-jasmine2/src/__tests__/reporter.test.ts|1|||107ms| |packages/jest-jasmine2/src/__tests__/reporter.test.ts|1✔️|||107ms|
|packages/jest-jasmine2/src/__tests__/Suite.test.ts|1|||84ms| |packages/jest-jasmine2/src/__tests__/Suite.test.ts|1✔️|||84ms|
|packages/jest-jasmine2/src/__tests__/todoError.test.ts|3|||27ms| |packages/jest-jasmine2/src/__tests__/todoError.test.ts|3✔️|||27ms|
|packages/jest-leak-detector/src/__tests__/index.test.ts|6|||986ms| |packages/jest-leak-detector/src/__tests__/index.test.ts|6✔️|||986ms|
|packages/jest-matcher-utils/src/__tests__/deepCyclicCopyReplaceable.test.ts|11|||49ms| |packages/jest-matcher-utils/src/__tests__/deepCyclicCopyReplaceable.test.ts|11✔️|||49ms|
|packages/jest-matcher-utils/src/__tests__/deepCyclicCopyReplaceableDom.test.ts|2|||48ms| |packages/jest-matcher-utils/src/__tests__/deepCyclicCopyReplaceableDom.test.ts|2✔️|||48ms|
|packages/jest-matcher-utils/src/__tests__/index.test.ts|48|||391ms| |packages/jest-matcher-utils/src/__tests__/index.test.ts|48✔️|||391ms|
|packages/jest-matcher-utils/src/__tests__/printDiffOrStringify.test.ts|21|||114ms| |packages/jest-matcher-utils/src/__tests__/printDiffOrStringify.test.ts|21✔️|||114ms|
|packages/jest-matcher-utils/src/__tests__/Replaceable.test.ts|17|||111ms| |packages/jest-matcher-utils/src/__tests__/Replaceable.test.ts|17✔️|||111ms|
|packages/jest-message-util/src/__tests__/messages.test.ts|11|||205ms| |packages/jest-message-util/src/__tests__/messages.test.ts|11✔️|||205ms|
|packages/jest-mock/src/__tests__/index.test.ts|84|||509ms| |packages/jest-mock/src/__tests__/index.test.ts|84✔️|||509ms|
|packages/jest-regex-util/src/__tests__/index.test.ts|8|||56ms| |packages/jest-regex-util/src/__tests__/index.test.ts|8✔️|||56ms|
|packages/jest-repl/src/__tests__/jest_repl.test.js|1|||1s| |packages/jest-repl/src/__tests__/jest_repl.test.js|1✔️|||1s|
|packages/jest-repl/src/__tests__/runtime_cli.test.js|4|||4s| |packages/jest-repl/src/__tests__/runtime_cli.test.js|4✔️|||4s|
|packages/jest-reporters/src/__tests__/CoverageReporter.test.js|12|||397ms| |packages/jest-reporters/src/__tests__/CoverageReporter.test.js|12✔️|||397ms|
|packages/jest-reporters/src/__tests__/CoverageWorker.test.js|2|||199ms| |packages/jest-reporters/src/__tests__/CoverageWorker.test.js|2✔️|||199ms|
|packages/jest-reporters/src/__tests__/DefaultReporter.test.js|2|||148ms| |packages/jest-reporters/src/__tests__/DefaultReporter.test.js|2✔️|||148ms|
|packages/jest-reporters/src/__tests__/generateEmptyCoverage.test.js|3|||1s| |packages/jest-reporters/src/__tests__/generateEmptyCoverage.test.js|3✔️|||1s|
|packages/jest-reporters/src/__tests__/getResultHeader.test.js|4|||30ms| |packages/jest-reporters/src/__tests__/getResultHeader.test.js|4✔️|||30ms|
|packages/jest-reporters/src/__tests__/getSnapshotStatus.test.js|3|||28ms| |packages/jest-reporters/src/__tests__/getSnapshotStatus.test.js|3✔️|||28ms|
|packages/jest-reporters/src/__tests__/getSnapshotSummary.test.js|4|||49ms| |packages/jest-reporters/src/__tests__/getSnapshotSummary.test.js|4✔️|||49ms|
|packages/jest-reporters/src/__tests__/getWatermarks.test.ts|2|||37ms| |packages/jest-reporters/src/__tests__/getWatermarks.test.ts|2✔️|||37ms|
|packages/jest-reporters/src/__tests__/NotifyReporter.test.ts|18|||166ms| |packages/jest-reporters/src/__tests__/NotifyReporter.test.ts|18✔️|||166ms|
|packages/jest-reporters/src/__tests__/SummaryReporter.test.js|4|||366ms| |packages/jest-reporters/src/__tests__/SummaryReporter.test.js|4✔️|||366ms|
|packages/jest-reporters/src/__tests__/utils.test.ts|10|||85ms| |packages/jest-reporters/src/__tests__/utils.test.ts|10✔️|||85ms|
|packages/jest-reporters/src/__tests__/VerboseReporter.test.js|11|||425ms| |packages/jest-reporters/src/__tests__/VerboseReporter.test.js|11✔️|||425ms|
|packages/jest-resolve-dependencies/src/__tests__/dependency_resolver.test.ts|11|||666ms| |packages/jest-resolve-dependencies/src/__tests__/dependency_resolver.test.ts|11✔️|||666ms|
|packages/jest-resolve/src/__tests__/isBuiltinModule.test.ts|4|||36ms| |packages/jest-resolve/src/__tests__/isBuiltinModule.test.ts|4✔️|||36ms|
|packages/jest-resolve/src/__tests__/resolve.test.ts|16|||1s| |packages/jest-resolve/src/__tests__/resolve.test.ts|16✔️|||1s|
|packages/jest-runner/src/__tests__/testRunner.test.ts|2|||905ms| |packages/jest-runner/src/__tests__/testRunner.test.ts|2✔️|||905ms|
|packages/jest-runtime/src/__tests__/instrumentation.test.ts|1|||275ms| |packages/jest-runtime/src/__tests__/instrumentation.test.ts|1✔️|||275ms|
|packages/jest-runtime/src/__tests__/runtime_create_mock_from_module.test.js|3|||606ms| |packages/jest-runtime/src/__tests__/runtime_create_mock_from_module.test.js|3✔️|||606ms|
|packages/jest-runtime/src/__tests__/runtime_environment.test.js|2|||497ms| |packages/jest-runtime/src/__tests__/runtime_environment.test.js|2✔️|||497ms|
|packages/jest-runtime/src/__tests__/runtime_internal_module.test.js|4|||727ms| |packages/jest-runtime/src/__tests__/runtime_internal_module.test.js|4✔️|||727ms|
|packages/jest-runtime/src/__tests__/runtime_jest_fn.js|4|||479ms| |packages/jest-runtime/src/__tests__/runtime_jest_fn.js|4✔️|||479ms|
|packages/jest-runtime/src/__tests__/runtime_jest_spy_on.test.js|2|||521ms| |packages/jest-runtime/src/__tests__/runtime_jest_spy_on.test.js|2✔️|||521ms|
|packages/jest-runtime/src/__tests__/runtime_mock.test.js|4|||743ms| |packages/jest-runtime/src/__tests__/runtime_mock.test.js|4✔️|||743ms|
|packages/jest-runtime/src/__tests__/runtime_module_directories.test.js|4|||525ms| |packages/jest-runtime/src/__tests__/runtime_module_directories.test.js|4✔️|||525ms|
|packages/jest-runtime/src/__tests__/runtime_node_path.test.js|4|||1s| |packages/jest-runtime/src/__tests__/runtime_node_path.test.js|4✔️|||1s|
|packages/jest-runtime/src/__tests__/runtime_require_actual.test.js|2|||478ms| |packages/jest-runtime/src/__tests__/runtime_require_actual.test.js|2✔️|||478ms|
|packages/jest-runtime/src/__tests__/runtime_require_cache.test.js|2|||454ms| |packages/jest-runtime/src/__tests__/runtime_require_cache.test.js|2✔️|||454ms|
|packages/jest-runtime/src/__tests__/runtime_require_mock.test.js|13|||962ms| |packages/jest-runtime/src/__tests__/runtime_require_mock.test.js|13✔️|||962ms|
|packages/jest-runtime/src/__tests__/runtime_require_module_no_ext.test.js|1|||261ms| |packages/jest-runtime/src/__tests__/runtime_require_module_no_ext.test.js|1✔️|||261ms|
|packages/jest-runtime/src/__tests__/runtime_require_module_or_mock_transitive_deps.test.js|6|||2s| |packages/jest-runtime/src/__tests__/runtime_require_module_or_mock_transitive_deps.test.js|6✔️|||2s|
|packages/jest-runtime/src/__tests__/runtime_require_module_or_mock.test.js|17|||1s| |packages/jest-runtime/src/__tests__/runtime_require_module_or_mock.test.js|17✔️|||1s|
|packages/jest-runtime/src/__tests__/runtime_require_module.test.js|27|||2s| |packages/jest-runtime/src/__tests__/runtime_require_module.test.js|27✔️|||2s|
|packages/jest-runtime/src/__tests__/runtime_require_resolve.test.ts|5|||707ms| |packages/jest-runtime/src/__tests__/runtime_require_resolve.test.ts|5✔️|||707ms|
|packages/jest-runtime/src/__tests__/runtime_wrap.js|2|||263ms| |packages/jest-runtime/src/__tests__/runtime_wrap.js|2✔️|||263ms|
|packages/jest-runtime/src/__tests__/Runtime-sourceMaps.test.js|1|||584ms| |packages/jest-runtime/src/__tests__/Runtime-sourceMaps.test.js|1✔️|||584ms|
|packages/jest-runtime/src/__tests__/Runtime-statics.test.js|2|||162ms| |packages/jest-runtime/src/__tests__/Runtime-statics.test.js|2✔️|||162ms|
|packages/jest-serializer/src/__tests__/index.test.ts|17|||158ms| |packages/jest-serializer/src/__tests__/index.test.ts|17✔️|||158ms|
|packages/jest-snapshot/src/__tests__/dedentLines.test.ts|17|||94ms| |packages/jest-snapshot/src/__tests__/dedentLines.test.ts|17✔️|||94ms|
|packages/jest-snapshot/src/__tests__/InlineSnapshots.test.ts|22|||1s| |packages/jest-snapshot/src/__tests__/InlineSnapshots.test.ts|22✔️|||1s|
|packages/jest-snapshot/src/__tests__/matcher.test.ts|1|||131ms| |packages/jest-snapshot/src/__tests__/matcher.test.ts|1✔️|||131ms|
|packages/jest-snapshot/src/__tests__/mockSerializer.test.ts|10|||45ms| |packages/jest-snapshot/src/__tests__/mockSerializer.test.ts|10✔️|||45ms|
|packages/jest-snapshot/src/__tests__/printSnapshot.test.ts|71|||1s| |packages/jest-snapshot/src/__tests__/printSnapshot.test.ts|71✔️|||1s|
|packages/jest-snapshot/src/__tests__/SnapshotResolver.test.ts|10|||98ms| |packages/jest-snapshot/src/__tests__/SnapshotResolver.test.ts|10✔️|||98ms|
|packages/jest-snapshot/src/__tests__/throwMatcher.test.ts|3|||481ms| |packages/jest-snapshot/src/__tests__/throwMatcher.test.ts|3✔️|||481ms|
|packages/jest-snapshot/src/__tests__/utils.test.ts|26|||214ms| |packages/jest-snapshot/src/__tests__/utils.test.ts|26✔️|||214ms|
|packages/jest-source-map/src/__tests__/getCallsite.test.ts|3|||86ms| |packages/jest-source-map/src/__tests__/getCallsite.test.ts|3✔️|||86ms|
|packages/jest-test-result/src/__tests__/formatTestResults.test.ts|1|||53ms| |packages/jest-test-result/src/__tests__/formatTestResults.test.ts|1✔️|||53ms|
|packages/jest-test-sequencer/src/__tests__/test_sequencer.test.js|8|||251ms| |packages/jest-test-sequencer/src/__tests__/test_sequencer.test.js|8✔️|||251ms|
|packages/jest-transform/src/__tests__/ScriptTransformer.test.ts|22|||2s| |packages/jest-transform/src/__tests__/ScriptTransformer.test.ts|22✔️|||2s|
|packages/jest-transform/src/__tests__/shouldInstrument.test.ts|25|||155ms| |packages/jest-transform/src/__tests__/shouldInstrument.test.ts|25✔️|||155ms|
|packages/jest-util/src/__tests__/createProcessObject.test.ts|4|||81ms| |packages/jest-util/src/__tests__/createProcessObject.test.ts|4✔️|||81ms|
|packages/jest-util/src/__tests__/deepCyclicCopy.test.ts|12|||86ms| |packages/jest-util/src/__tests__/deepCyclicCopy.test.ts|12✔️|||86ms|
|packages/jest-util/src/__tests__/errorWithStack.test.ts|1|||41ms| |packages/jest-util/src/__tests__/errorWithStack.test.ts|1✔️|||41ms|
|packages/jest-util/src/__tests__/formatTime.test.ts|11|||82ms| |packages/jest-util/src/__tests__/formatTime.test.ts|11✔️|||82ms|
|packages/jest-util/src/__tests__/globsToMatcher.test.ts|4|||56ms| |packages/jest-util/src/__tests__/globsToMatcher.test.ts|4✔️|||56ms|
|packages/jest-util/src/__tests__/installCommonGlobals.test.ts|2|||68ms| |packages/jest-util/src/__tests__/installCommonGlobals.test.ts|2✔️|||68ms|
|packages/jest-util/src/__tests__/isInteractive.test.ts|2|||35ms| |packages/jest-util/src/__tests__/isInteractive.test.ts|2✔️|||35ms|
|packages/jest-util/src/__tests__/isPromise.test.ts|10|||30ms| |packages/jest-util/src/__tests__/isPromise.test.ts|10✔️|||30ms|
|packages/jest-validate/src/__tests__/validate.test.ts|23|||283ms| |packages/jest-validate/src/__tests__/validate.test.ts|23✔️|||283ms|
|packages/jest-validate/src/__tests__/validateCLIOptions.test.js|6|||83ms| |packages/jest-validate/src/__tests__/validateCLIOptions.test.js|6✔️|||83ms|
|packages/jest-watcher/src/lib/__tests__/formatTestNameByPattern.test.ts|11|||129ms| |packages/jest-watcher/src/lib/__tests__/formatTestNameByPattern.test.ts|11✔️|||129ms|
|packages/jest-watcher/src/lib/__tests__/prompt.test.ts|3|||91ms| |packages/jest-watcher/src/lib/__tests__/prompt.test.ts|3✔️|||91ms|
|packages/jest-watcher/src/lib/__tests__/scroll.test.ts|5|||57ms| |packages/jest-watcher/src/lib/__tests__/scroll.test.ts|5✔️|||57ms|
|packages/jest-worker/src/__tests__/Farm.test.js|10|||158ms| |packages/jest-worker/src/__tests__/Farm.test.js|10✔️|||158ms|
|packages/jest-worker/src/__tests__/FifoQueue.test.js|3|||48ms| |packages/jest-worker/src/__tests__/FifoQueue.test.js|3✔️|||48ms|
|packages/jest-worker/src/__tests__/index.test.js|8|||230ms| |packages/jest-worker/src/__tests__/index.test.js|8✔️|||230ms|
|packages/jest-worker/src/__tests__/PriorityQueue.test.js|5|||63ms| |packages/jest-worker/src/__tests__/PriorityQueue.test.js|5✔️|||63ms|
|packages/jest-worker/src/__tests__/process-integration.test.js|5|||62ms| |packages/jest-worker/src/__tests__/process-integration.test.js|5✔️|||62ms|
|packages/jest-worker/src/__tests__/thread-integration.test.js|6|||114ms| |packages/jest-worker/src/__tests__/thread-integration.test.js|6✔️|||114ms|
|packages/jest-worker/src/__tests__/WorkerPool.test.js|3|||51ms| |packages/jest-worker/src/__tests__/WorkerPool.test.js|3✔️|||51ms|
|packages/jest-worker/src/base/__tests__/BaseWorkerPool.test.js|11|||653ms| |packages/jest-worker/src/base/__tests__/BaseWorkerPool.test.js|11✔️|||653ms|
|packages/jest-worker/src/workers/__tests__/ChildProcessWorker.test.js|17|||184ms| |packages/jest-worker/src/workers/__tests__/ChildProcessWorker.test.js|17✔️|||184ms|
|packages/jest-worker/src/workers/__tests__/NodeThreadsWorker.test.js|15|||258ms| |packages/jest-worker/src/workers/__tests__/NodeThreadsWorker.test.js|15✔️|||258ms|
|packages/jest-worker/src/workers/__tests__/processChild.test.js|10|||135ms| |packages/jest-worker/src/workers/__tests__/processChild.test.js|10✔️|||135ms|
|packages/jest-worker/src/workers/__tests__/threadChild.test.js|10|||120ms| |packages/jest-worker/src/workers/__tests__/threadChild.test.js|10✔️|||120ms|
|packages/pretty-format/src/__tests__/AsymmetricMatcher.test.ts|38|||137ms| |packages/pretty-format/src/__tests__/AsymmetricMatcher.test.ts|38✔️|||137ms|
|packages/pretty-format/src/__tests__/ConvertAnsi.test.ts|6|||43ms| |packages/pretty-format/src/__tests__/ConvertAnsi.test.ts|6✔️|||43ms|
|packages/pretty-format/src/__tests__/DOMCollection.test.ts|10|||64ms| |packages/pretty-format/src/__tests__/DOMCollection.test.ts|10✔️|||64ms|
|packages/pretty-format/src/__tests__/DOMElement.test.ts|28|||148ms| |packages/pretty-format/src/__tests__/DOMElement.test.ts|28✔️|||148ms|
|packages/pretty-format/src/__tests__/Immutable.test.ts|111|||443ms| |packages/pretty-format/src/__tests__/Immutable.test.ts|111✔️|||443ms|
|packages/pretty-format/src/__tests__/prettyFormat.test.ts|86|||219ms| |packages/pretty-format/src/__tests__/prettyFormat.test.ts|86✔️|||219ms|
|packages/pretty-format/src/__tests__/react.test.tsx|55|||325ms| |packages/pretty-format/src/__tests__/react.test.tsx|55✔️|||325ms|
|packages/pretty-format/src/__tests__/ReactElement.test.ts|3|||64ms| |packages/pretty-format/src/__tests__/ReactElement.test.ts|3✔️|||64ms|
### ❌ <a id="user-content-r0s75" href="#r0s75">e2e/__tests__/jestChangedFiles.test.ts</a> ### ❌ <a id="user-content-r0s75" href="#r0s75">e2e/__tests__/jestChangedFiles.test.ts</a>
``` ```
gets hg SCM roots and dedupes them ✔️ gets hg SCM roots and dedupes them
gets git SCM roots and dedupes them ✔️ gets git SCM roots and dedupes them
gets mixed git and hg SCM roots and dedupes them ✔️ gets mixed git and hg SCM roots and dedupes them
gets changed files for git ✔️ gets changed files for git
monitors only root paths for git ✔️ monitors only root paths for git
does not find changes in files with no diff, for git ✔️ does not find changes in files with no diff, for git
handles a bad revision for "changedSince", for git ✔️ handles a bad revision for "changedSince", for git
❌ gets changed files for hg ❌ gets changed files for hg
Error: abort: empty revision range Error: abort: empty revision range
monitors only root paths for hg ✔️ monitors only root paths for hg
handles a bad revision for "changedSince", for hg ✔️ handles a bad revision for "changedSince", for hg
``` ```
### ❌ <a id="user-content-r0s98" href="#r0s98">e2e/__tests__/onlyChanged.test.ts</a> ### ❌ <a id="user-content-r0s98" href="#r0s98">e2e/__tests__/onlyChanged.test.ts</a>
``` ```
run for "onlyChanged" and "changedSince" ✔️ run for "onlyChanged" and "changedSince"
run only changed files ✔️ run only changed files
report test coverage for only changed files ✔️ report test coverage for only changed files
report test coverage of source on test file change under only changed files ✔️ report test coverage of source on test file change under only changed files
do not pickup non-tested files when reporting coverage on only changed files ✔️ do not pickup non-tested files when reporting coverage on only changed files
collect test coverage when using onlyChanged ✔️ collect test coverage when using onlyChanged
onlyChanged in config is overwritten by --all or testPathPattern ✔️ onlyChanged in config is overwritten by --all or testPathPattern
❌ gets changed files for hg ❌ gets changed files for hg
Error: expect(received).toMatch(expected) Error: expect(received).toMatch(expected)
path on Windows is case-insensitive ✔️ path on Windows is case-insensitive
``` ```

View File

@@ -3,12 +3,12 @@
**6** tests were completed in **12ms** with **1** passed, **4** failed and **1** skipped. **6** tests were completed in **12ms** with **1** passed, **4** failed and **1** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|[test/main.test.js](#r0s0)|1|3❌||1ms| |[test/main.test.js](#r0s0)|1✔️|3❌||1ms|
|[test/second.test.js](#r0s1)||1❌|1|8ms| |[test/second.test.js](#r0s1)||1❌|1✖️|8ms|
### ❌ <a id="user-content-r0s0" href="#r0s0">test/main.test.js</a> ### ❌ <a id="user-content-r0s0" href="#r0s0">test/main.test.js</a>
``` ```
Test 1 Test 1
Passing test ✔️ Passing test
Test 1 Test 1.1 Test 1 Test 1.1
❌ Exception in target unit ❌ Exception in target unit
Some error Some error
@@ -23,7 +23,7 @@ Test 2
``` ```
### ❌ <a id="user-content-r0s1" href="#r0s1">test/second.test.js</a> ### ❌ <a id="user-content-r0s1" href="#r0s1">test/second.test.js</a>
``` ```
Skipped test ✖️ Skipped test
❌ Timeout test ❌ Timeout test
Timeout of 1ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (C:\Users\Michal\Workspace\dorny\test-reporter\reports\mocha\test\second.test.js) Timeout of 1ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (C:\Users\Michal\Workspace\dorny\test-reporter\reports\mocha\test\second.test.js)
``` ```

View File

@@ -1,41 +1,41 @@
![Tests passed successfully](https://img.shields.io/badge/tests-833%20passed%2C%206%20skipped-success) ![Tests passed successfully](https://img.shields.io/badge/tests-833%20passed%2C%206%20skipped-success)
##  <a id="user-content-r0" href="#r0">fixtures/external/mocha/mocha-test-results.json</a> ## ✔️ <a id="user-content-r0" href="#r0">fixtures/external/mocha/mocha-test-results.json</a>
**839** tests were completed in **6s** with **833** passed, **0** failed and **6** skipped. **839** tests were completed in **6s** with **833** passed, **0** failed and **6** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|test/node-unit/buffered-worker-pool.spec.js|14|||8ms| |test/node-unit/buffered-worker-pool.spec.js|14✔️|||8ms|
|test/node-unit/cli/config.spec.js|10|||8ms| |test/node-unit/cli/config.spec.js|10✔️|||8ms|
|test/node-unit/cli/node-flags.spec.js|105|||9ms| |test/node-unit/cli/node-flags.spec.js|105✔️|||9ms|
|test/node-unit/cli/options.spec.js|36|||250ms| |test/node-unit/cli/options.spec.js|36✔️|||250ms|
|test/node-unit/cli/run-helpers.spec.js|9|||8ms| |test/node-unit/cli/run-helpers.spec.js|9✔️|||8ms|
|test/node-unit/cli/run.spec.js|40|||4ms| |test/node-unit/cli/run.spec.js|40✔️|||4ms|
|test/node-unit/mocha.spec.js|24|||33ms| |test/node-unit/mocha.spec.js|24✔️|||33ms|
|test/node-unit/parallel-buffered-runner.spec.js|19|||23ms| |test/node-unit/parallel-buffered-runner.spec.js|19✔️|||23ms|
|test/node-unit/reporters/parallel-buffered.spec.js|6|||16ms| |test/node-unit/reporters/parallel-buffered.spec.js|6✔️|||16ms|
|test/node-unit/serializer.spec.js|40|||31ms| |test/node-unit/serializer.spec.js|40✔️|||31ms|
|test/node-unit/stack-trace-filter.spec.js|2||4|1ms| |test/node-unit/stack-trace-filter.spec.js|2✔️||4✖️|1ms|
|test/node-unit/utils.spec.js|5|||1ms| |test/node-unit/utils.spec.js|5✔️|||1ms|
|test/node-unit/worker.spec.js|15|||92ms| |test/node-unit/worker.spec.js|15✔️|||92ms|
|test/unit/context.spec.js|8|||5ms| |test/unit/context.spec.js|8✔️|||5ms|
|test/unit/duration.spec.js|3|||166ms| |test/unit/duration.spec.js|3✔️|||166ms|
|test/unit/errors.spec.js|13|||5ms| |test/unit/errors.spec.js|13✔️|||5ms|
|test/unit/globals.spec.js|4|||0ms| |test/unit/globals.spec.js|4✔️|||0ms|
|test/unit/grep.spec.js|8|||2ms| |test/unit/grep.spec.js|8✔️|||2ms|
|test/unit/hook-async.spec.js|3|||1ms| |test/unit/hook-async.spec.js|3✔️|||1ms|
|test/unit/hook-sync-nested.spec.js|4|||1ms| |test/unit/hook-sync-nested.spec.js|4✔️|||1ms|
|test/unit/hook-sync.spec.js|3|||0ms| |test/unit/hook-sync.spec.js|3✔️|||0ms|
|test/unit/hook-timeout.spec.js|1|||0ms| |test/unit/hook-timeout.spec.js|1✔️|||0ms|
|test/unit/hook.spec.js|4|||0ms| |test/unit/hook.spec.js|4✔️|||0ms|
|test/unit/mocha.spec.js|115||1|128ms| |test/unit/mocha.spec.js|115✔️||1✖️|128ms|
|test/unit/overspecified-async.spec.js|1|||3ms| |test/unit/overspecified-async.spec.js|1✔️|||3ms|
|test/unit/parse-query.spec.js|2|||1ms| |test/unit/parse-query.spec.js|2✔️|||1ms|
|test/unit/plugin-loader.spec.js|41||1|16ms| |test/unit/plugin-loader.spec.js|41✔️||1✖️|16ms|
|test/unit/required-tokens.spec.js|1|||0ms| |test/unit/required-tokens.spec.js|1✔️|||0ms|
|test/unit/root.spec.js|1|||0ms| |test/unit/root.spec.js|1✔️|||0ms|
|test/unit/runnable.spec.js|55|||122ms| |test/unit/runnable.spec.js|55✔️|||122ms|
|test/unit/runner.spec.js|77|||43ms| |test/unit/runner.spec.js|77✔️|||43ms|
|test/unit/suite.spec.js|57|||14ms| |test/unit/suite.spec.js|57✔️|||14ms|
|test/unit/test.spec.js|15|||0ms| |test/unit/test.spec.js|15✔️|||0ms|
|test/unit/throw.spec.js|9|||9ms| |test/unit/throw.spec.js|9✔️|||9ms|
|test/unit/timeout.spec.js|8|||109ms| |test/unit/timeout.spec.js|8✔️|||109ms|
|test/unit/utils.spec.js|75|||24ms| |test/unit/utils.spec.js|75✔️|||24ms|

View File

@@ -3,368 +3,368 @@
**269** tests were completed in **0ms** with **268** passed, **1** failed and **0** skipped. **269** tests were completed in **0ms** with **268** passed, **1** failed and **0** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|[test/builder_test.dart](#r0s0)|24|||402ms| |[test/builder_test.dart](#r0s0)|24✔️|||402ms|
|[test/change_notifier_provider_test.dart](#r0s1)|10|||306ms| |[test/change_notifier_provider_test.dart](#r0s1)|10✔️|||306ms|
|[test/consumer_test.dart](#r0s2)|18|||340ms| |[test/consumer_test.dart](#r0s2)|18✔️|||340ms|
|[test/context_test.dart](#r0s3)|31|||698ms| |[test/context_test.dart](#r0s3)|31✔️|||698ms|
|[test/future_provider_test.dart](#r0s4)|10|||305ms| |[test/future_provider_test.dart](#r0s4)|10✔️|||305ms|
|[test/inherited_provider_test.dart](#r0s5)|81|||1s| |[test/inherited_provider_test.dart](#r0s5)|81✔️|||1s|
|[test/listenable_provider_test.dart](#r0s6)|16|||353ms| |[test/listenable_provider_test.dart](#r0s6)|16✔️|||353ms|
|[test/listenable_proxy_provider_test.dart](#r0s7)|12|||373ms| |[test/listenable_proxy_provider_test.dart](#r0s7)|12✔️|||373ms|
|[test/multi_provider_test.dart](#r0s8)|3|||198ms| |[test/multi_provider_test.dart](#r0s8)|3✔️|||198ms|
|[test/provider_test.dart](#r0s9)|11|||306ms| |[test/provider_test.dart](#r0s9)|11✔️|||306ms|
|[test/proxy_provider_test.dart](#r0s10)|16|||438ms| |[test/proxy_provider_test.dart](#r0s10)|16✔️|||438ms|
|[test/reassemble_test.dart](#r0s11)|3|||221ms| |[test/reassemble_test.dart](#r0s11)|3✔️|||221ms|
|[test/selector_test.dart](#r0s12)|17|||364ms| |[test/selector_test.dart](#r0s12)|17✔️|||364ms|
|[test/stateful_provider_test.dart](#r0s13)|4|||254ms| |[test/stateful_provider_test.dart](#r0s13)|4✔️|||254ms|
|[test/stream_provider_test.dart](#r0s14)|8|||282ms| |[test/stream_provider_test.dart](#r0s14)|8✔️|||282ms|
|[test/value_listenable_provider_test.dart](#r0s15)|4|1❌||327ms| |[test/value_listenable_provider_test.dart](#r0s15)|4✔️|1❌||327ms|
###  <a id="user-content-r0s0" href="#r0s0">test/builder_test.dart</a> ### ✔️ <a id="user-content-r0s0" href="#r0s0">test/builder_test.dart</a>
``` ```
ChangeNotifierProvider ChangeNotifierProvider
default ✔️ default
.value ✔️ .value
ListenableProvider ListenableProvider
default ✔️ default
.value ✔️ .value
Provider Provider
default ✔️ default
.value ✔️ .value
ProxyProvider ProxyProvider
0 ✔️ 0
1 ✔️ 1
2 ✔️ 2
3 ✔️ 3
4 ✔️ 4
5 ✔️ 5
6 ✔️ 6
MultiProvider MultiProvider
with 1 ChangeNotifierProvider default ✔️ with 1 ChangeNotifierProvider default
with 2 ChangeNotifierProvider default ✔️ with 2 ChangeNotifierProvider default
with ListenableProvider default ✔️ with ListenableProvider default
with Provider default ✔️ with Provider default
with ProxyProvider0 ✔️ with ProxyProvider0
with ProxyProvider1 ✔️ with ProxyProvider1
with ProxyProvider2 ✔️ with ProxyProvider2
with ProxyProvider3 ✔️ with ProxyProvider3
with ProxyProvider4 ✔️ with ProxyProvider4
with ProxyProvider5 ✔️ with ProxyProvider5
with ProxyProvider6 ✔️ with ProxyProvider6
``` ```
###  <a id="user-content-r0s1" href="#r0s1">test/change_notifier_provider_test.dart</a> ### ✔️ <a id="user-content-r0s1" href="#r0s1">test/change_notifier_provider_test.dart</a>
``` ```
Use builder property, not child ✔️ Use builder property, not child
ChangeNotifierProvider ChangeNotifierProvider
value ✔️ value
builder ✔️ builder
builder1 ✔️ builder1
builder2 ✔️ builder2
builder3 ✔️ builder3
builder4 ✔️ builder4
builder5 ✔️ builder5
builder6 ✔️ builder6
builder0 ✔️ builder0
``` ```
###  <a id="user-content-r0s2" href="#r0s2">test/consumer_test.dart</a> ### ✔️ <a id="user-content-r0s2" href="#r0s2">test/consumer_test.dart</a>
``` ```
consumer consumer
obtains value from Provider<T> ✔️ obtains value from Provider<T>
crashed with no builder ✔️ crashed with no builder
can be used inside MultiProvider ✔️ can be used inside MultiProvider
consumer2 consumer2
obtains value from Provider<T> ✔️ obtains value from Provider<T>
crashed with no builder ✔️ crashed with no builder
can be used inside MultiProvider ✔️ can be used inside MultiProvider
consumer3 consumer3
obtains value from Provider<T> ✔️ obtains value from Provider<T>
crashed with no builder ✔️ crashed with no builder
can be used inside MultiProvider ✔️ can be used inside MultiProvider
consumer4 consumer4
obtains value from Provider<T> ✔️ obtains value from Provider<T>
crashed with no builder ✔️ crashed with no builder
can be used inside MultiProvider ✔️ can be used inside MultiProvider
consumer5 consumer5
obtains value from Provider<T> ✔️ obtains value from Provider<T>
crashed with no builder ✔️ crashed with no builder
can be used inside MultiProvider ✔️ can be used inside MultiProvider
consumer6 consumer6
obtains value from Provider<T> ✔️ obtains value from Provider<T>
crashed with no builder ✔️ crashed with no builder
can be used inside MultiProvider ✔️ can be used inside MultiProvider
``` ```
###  <a id="user-content-r0s3" href="#r0s3">test/context_test.dart</a> ### ✔️ <a id="user-content-r0s3" href="#r0s3">test/context_test.dart</a>
``` ```
watch in layoutbuilder ✔️ watch in layoutbuilder
select in layoutbuilder ✔️ select in layoutbuilder
cannot select in listView ✔️ cannot select in listView
watch in listView ✔️ watch in listView
watch in gridView ✔️ watch in gridView
clears select dependencies for all dependents ✔️ clears select dependencies for all dependents
BuildContext BuildContext
internal selected value is updated ✔️ internal selected value is updated
create can use read without being lazy ✔️ create can use read without being lazy
watch can be used inside InheritedProvider.update ✔️ watch can be used inside InheritedProvider.update
select doesn't fail if it loads a provider that depends on other providers ✔️ select doesn't fail if it loads a provider that depends on other providers
don't call old selectors if the child rebuilds individually ✔️ don't call old selectors if the child rebuilds individually
selects throws inside click handlers ✔️ selects throws inside click handlers
select throws if try to read dynamic ✔️ select throws if try to read dynamic
select throws ProviderNotFoundException ✔️ select throws ProviderNotFoundException
select throws if watch called inside the callback from build ✔️ select throws if watch called inside the callback from build
select throws if read called inside the callback from build ✔️ select throws if read called inside the callback from build
select throws if select called inside the callback from build ✔️ select throws if select called inside the callback from build
select throws if read called inside the callback on dependency change ✔️ select throws if read called inside the callback on dependency change
select throws if watch called inside the callback on dependency change ✔️ select throws if watch called inside the callback on dependency change
select throws if select called inside the callback on dependency change ✔️ select throws if select called inside the callback on dependency change
can call read inside didChangeDependencies ✔️ can call read inside didChangeDependencies
select cannot be called inside didChangeDependencies ✔️ select cannot be called inside didChangeDependencies
select in initState throws ✔️ select in initState throws
watch in initState throws ✔️ watch in initState throws
read in initState works ✔️ read in initState works
consumer can be removed and selector stops to be called ✔️ consumer can be removed and selector stops to be called
context.select deeply compares maps ✔️ context.select deeply compares maps
context.select deeply compares lists ✔️ context.select deeply compares lists
context.select deeply compares iterables ✔️ context.select deeply compares iterables
context.select deeply compares sets ✔️ context.select deeply compares sets
context.watch listens to value changes ✔️ context.watch listens to value changes
``` ```
###  <a id="user-content-r0s4" href="#r0s4">test/future_provider_test.dart</a> ### ✔️ <a id="user-content-r0s4" href="#r0s4">test/future_provider_test.dart</a>
``` ```
works with MultiProvider ✔️ works with MultiProvider
(catchError) previous future completes after transition is no-op ✔️ (catchError) previous future completes after transition is no-op
previous future completes after transition is no-op ✔️ previous future completes after transition is no-op
transition from future to future preserve state ✔️ transition from future to future preserve state
throws if future has error and catchError is missing ✔️ throws if future has error and catchError is missing
calls catchError if present and future has error ✔️ calls catchError if present and future has error
works with null ✔️ works with null
create and dispose future with builder ✔️ create and dispose future with builder
FutureProvider() crashes if builder is null ✔️ FutureProvider() crashes if builder is null
FutureProvider() FutureProvider()
crashes if builder is null ✔️ crashes if builder is null
``` ```
###  <a id="user-content-r0s5" href="#r0s5">test/inherited_provider_test.dart</a> ### ✔️ <a id="user-content-r0s5" href="#r0s5">test/inherited_provider_test.dart</a>
``` ```
regression test #377 ✔️ regression test #377
rebuild on dependency flags update ✔️ rebuild on dependency flags update
properly update debug flags if a create triggers another deferred create ✔️ properly update debug flags if a create triggers another deferred create
properly update debug flags if a create triggers another deferred create ✔️ properly update debug flags if a create triggers another deferred create
properly update debug flags if an update triggers another create/update ✔️ properly update debug flags if an update triggers another create/update
properly update debug flags if a create triggers another create/update ✔️ properly update debug flags if a create triggers another create/update
Provider.of(listen: false) outside of build works when it loads a provider ✔️ Provider.of(listen: false) outside of build works when it loads a provider
new value is available in didChangeDependencies ✔️ new value is available in didChangeDependencies
builder receives the current value and updates independently from `update` ✔️ builder receives the current value and updates independently from `update`
builder can _not_ rebuild when provider updates ✔️ builder can _not_ rebuild when provider updates
builder rebuilds if provider is recreated ✔️ builder rebuilds if provider is recreated
provider.of throws if listen:true outside of the widget tree ✔️ provider.of throws if listen:true outside of the widget tree
InheritedProvider throws if no child is provided with default constructor ✔️ InheritedProvider throws if no child is provided with default constructor
InheritedProvider throws if no child is provided with value constructor ✔️ InheritedProvider throws if no child is provided with value constructor
DeferredInheritedProvider throws if no child is provided with default constructor ✔️ DeferredInheritedProvider throws if no child is provided with default constructor
DeferredInheritedProvider throws if no child is provided with value constructor ✔️ DeferredInheritedProvider throws if no child is provided with value constructor
startListening markNeedsNotifyDependents ✔️ startListening markNeedsNotifyDependents
InheritedProvider can be subclassed ✔️ InheritedProvider can be subclassed
DeferredInheritedProvider can be subclassed ✔️ DeferredInheritedProvider can be subclassed
can be used with MultiProvider ✔️ can be used with MultiProvider
throw if the widget ctor changes ✔️ throw if the widget ctor changes
InheritedProvider lazy loading can be disabled ✔️ InheritedProvider lazy loading can be disabled
InheritedProvider.value lazy loading can be disabled ✔️ InheritedProvider.value lazy loading can be disabled
InheritedProvider subclass don't have to specify default lazy value ✔️ InheritedProvider subclass don't have to specify default lazy value
DeferredInheritedProvider lazy loading can be disabled ✔️ DeferredInheritedProvider lazy loading can be disabled
DeferredInheritedProvider.value lazy loading can be disabled ✔️ DeferredInheritedProvider.value lazy loading can be disabled
selector ✔️ selector
can select multiple types from same provider ✔️ can select multiple types from same provider
can select same type on two different providers ✔️ can select same type on two different providers
can select same type twice on same provider ✔️ can select same type twice on same provider
Provider.of has a proper error message if context is null ✔️ Provider.of has a proper error message if context is null
diagnostics diagnostics
InheritedProvider.value ✔️ InheritedProvider.value
InheritedProvider doesn't break lazy loading ✔️ InheritedProvider doesn't break lazy loading
InheritedProvider show if listening ✔️ InheritedProvider show if listening
DeferredInheritedProvider.value ✔️ DeferredInheritedProvider.value
DeferredInheritedProvider ✔️ DeferredInheritedProvider
InheritedProvider.value() InheritedProvider.value()
markNeedsNotifyDependents during startListening is noop ✔️ markNeedsNotifyDependents during startListening is noop
startListening called again when create returns new value ✔️ startListening called again when create returns new value
startListening ✔️ startListening
stopListening not called twice if rebuild doesn't have listeners ✔️ stopListening not called twice if rebuild doesn't have listeners
removeListener cannot be null ✔️ removeListener cannot be null
pass down current value ✔️ pass down current value
default updateShouldNotify ✔️ default updateShouldNotify
custom updateShouldNotify ✔️ custom updateShouldNotify
InheritedProvider() InheritedProvider()
hasValue ✔️ hasValue
provider calls update if rebuilding only due to didChangeDependencies ✔️ provider calls update if rebuilding only due to didChangeDependencies
provider notifying dependents doesn't call update ✔️ provider notifying dependents doesn't call update
update can call Provider.of with listen:true ✔️ update can call Provider.of with listen:true
update lazy loaded can call Provider.of with listen:true ✔️ update lazy loaded can call Provider.of with listen:true
markNeedsNotifyDependents during startListening is noop ✔️ markNeedsNotifyDependents during startListening is noop
update can obtain parent of the same type than self ✔️ update can obtain parent of the same type than self
_debugCheckInvalidValueType ✔️ _debugCheckInvalidValueType
startListening ✔️ startListening
startListening called again when create returns new value ✔️ startListening called again when create returns new value
stopListening not called twice if rebuild doesn't have listeners ✔️ stopListening not called twice if rebuild doesn't have listeners
removeListener cannot be null ✔️ removeListener cannot be null
fails if initialValueBuilder calls inheritFromElement/inheritFromWiggetOfExactType ✔️ fails if initialValueBuilder calls inheritFromElement/inheritFromWiggetOfExactType
builder is called on every rebuild and after a dependency change ✔️ builder is called on every rebuild and after a dependency change
builder with no updateShouldNotify use == ✔️ builder with no updateShouldNotify use ==
builder calls updateShouldNotify callback ✔️ builder calls updateShouldNotify callback
initialValue is transmitted to valueBuilder ✔️ initialValue is transmitted to valueBuilder
calls builder again if dependencies change ✔️ calls builder again if dependencies change
exposes initialValue if valueBuilder is null ✔️ exposes initialValue if valueBuilder is null
call dispose on unmount ✔️ call dispose on unmount
builder unmount, dispose not called if value never read ✔️ builder unmount, dispose not called if value never read
call dispose after new value ✔️ call dispose after new value
valueBuilder works without initialBuilder ✔️ valueBuilder works without initialBuilder
calls initialValueBuilder lazily once ✔️ calls initialValueBuilder lazily once
throws if both builder and initialBuilder are missing ✔️ throws if both builder and initialBuilder are missing
DeferredInheritedProvider.value() DeferredInheritedProvider.value()
hasValue ✔️ hasValue
startListening ✔️ startListening
stopListening cannot be null ✔️ stopListening cannot be null
startListening doesn't need setState if already initialized ✔️ startListening doesn't need setState if already initialized
setState without updateShouldNotify ✔️ setState without updateShouldNotify
setState with updateShouldNotify ✔️ setState with updateShouldNotify
startListening never leave the widget uninitialized ✔️ startListening never leave the widget uninitialized
startListening called again on controller change ✔️ startListening called again on controller change
DeferredInheritedProvider() DeferredInheritedProvider()
create can't call inherited widgets ✔️ create can't call inherited widgets
creates the value lazily ✔️ creates the value lazily
dispose ✔️ dispose
dispose no-op if never built ✔️ dispose no-op if never built
``` ```
###  <a id="user-content-r0s6" href="#r0s6">test/listenable_provider_test.dart</a> ### ✔️ <a id="user-content-r0s6" href="#r0s6">test/listenable_provider_test.dart</a>
``` ```
ListenableProvider ListenableProvider
works with MultiProvider ✔️ works with MultiProvider
asserts that the created notifier can have listeners ✔️ asserts that the created notifier can have listeners
don't listen again if listenable instance doesn't change ✔️ don't listen again if listenable instance doesn't change
works with null (default) ✔️ works with null (default)
works with null (create) ✔️ works with null (create)
stateful create called once ✔️ stateful create called once
dispose called on unmount ✔️ dispose called on unmount
dispose can be null ✔️ dispose can be null
changing listenable rebuilds descendants ✔️ changing listenable rebuilds descendants
rebuilding with the same provider don't rebuilds descendants ✔️ rebuilding with the same provider don't rebuilds descendants
notifylistener rebuilds descendants ✔️ notifylistener rebuilds descendants
ListenableProvider value constructor ListenableProvider value constructor
pass down key ✔️ pass down key
changing the Listenable instance rebuilds dependents ✔️ changing the Listenable instance rebuilds dependents
ListenableProvider stateful constructor ListenableProvider stateful constructor
called with context ✔️ called with context
pass down key ✔️ pass down key
throws if create is null ✔️ throws if create is null
``` ```
###  <a id="user-content-r0s7" href="#r0s7">test/listenable_proxy_provider_test.dart</a> ### ✔️ <a id="user-content-r0s7" href="#r0s7">test/listenable_proxy_provider_test.dart</a>
``` ```
ListenableProxyProvider ListenableProxyProvider
throws if update is missing ✔️ throws if update is missing
asserts that the created notifier has no listener ✔️ asserts that the created notifier has no listener
asserts that the created notifier has no listener after rebuild ✔️ asserts that the created notifier has no listener after rebuild
rebuilds dependendents when listeners are called ✔️ rebuilds dependendents when listeners are called
update returning a new Listenable disposes the previously created value and update dependents ✔️ update returning a new Listenable disposes the previously created value and update dependents
disposes of created value ✔️ disposes of created value
ListenableProxyProvider variants ListenableProxyProvider variants
ListenableProxyProvider ✔️ ListenableProxyProvider
ListenableProxyProvider2 ✔️ ListenableProxyProvider2
ListenableProxyProvider3 ✔️ ListenableProxyProvider3
ListenableProxyProvider4 ✔️ ListenableProxyProvider4
ListenableProxyProvider5 ✔️ ListenableProxyProvider5
ListenableProxyProvider6 ✔️ ListenableProxyProvider6
``` ```
###  <a id="user-content-r0s8" href="#r0s8">test/multi_provider_test.dart</a> ### ✔️ <a id="user-content-r0s8" href="#r0s8">test/multi_provider_test.dart</a>
``` ```
MultiProvider MultiProvider
throw if providers is null ✔️ throw if providers is null
MultiProvider children can only access parent providers ✔️ MultiProvider children can only access parent providers
MultiProvider.providers with ignored child ✔️ MultiProvider.providers with ignored child
``` ```
###  <a id="user-content-r0s9" href="#r0s9">test/provider_test.dart</a> ### ✔️ <a id="user-content-r0s9" href="#r0s9">test/provider_test.dart</a>
``` ```
works with MultiProvider ✔️ works with MultiProvider
Provider.of Provider.of
throws if T is dynamic ✔️ throws if T is dynamic
listen defaults to true when building widgets ✔️ listen defaults to true when building widgets
listen defaults to false outside of the widget tree ✔️ listen defaults to false outside of the widget tree
listen:false doesn't trigger rebuild ✔️ listen:false doesn't trigger rebuild
listen:true outside of the widget tree throws ✔️ listen:true outside of the widget tree throws
Provider Provider
throws if the provided value is a Listenable/Stream ✔️ throws if the provided value is a Listenable/Stream
debugCheckInvalidValueType can be disabled ✔️ debugCheckInvalidValueType can be disabled
simple usage ✔️ simple usage
throws an error if no provider found ✔️ throws an error if no provider found
update should notify ✔️ update should notify
``` ```
###  <a id="user-content-r0s10" href="#r0s10">test/proxy_provider_test.dart</a> ### ✔️ <a id="user-content-r0s10" href="#r0s10">test/proxy_provider_test.dart</a>
``` ```
ProxyProvider ProxyProvider
throws if the provided value is a Listenable/Stream ✔️ throws if the provided value is a Listenable/Stream
debugCheckInvalidValueType can be disabled ✔️ debugCheckInvalidValueType can be disabled
create creates initial value ✔️ create creates initial value
consume another providers ✔️ consume another providers
rebuild descendants if value change ✔️ rebuild descendants if value change
call dispose when unmounted with the latest result ✔️ call dispose when unmounted with the latest result
don't rebuild descendants if value doesn't change ✔️ don't rebuild descendants if value doesn't change
pass down updateShouldNotify ✔️ pass down updateShouldNotify
works with MultiProvider ✔️ works with MultiProvider
update callback can trigger descendants setState synchronously ✔️ update callback can trigger descendants setState synchronously
throws if update is null ✔️ throws if update is null
ProxyProvider variants ProxyProvider variants
ProxyProvider2 ✔️ ProxyProvider2
ProxyProvider3 ✔️ ProxyProvider3
ProxyProvider4 ✔️ ProxyProvider4
ProxyProvider5 ✔️ ProxyProvider5
ProxyProvider6 ✔️ ProxyProvider6
``` ```
###  <a id="user-content-r0s11" href="#r0s11">test/reassemble_test.dart</a> ### ✔️ <a id="user-content-r0s11" href="#r0s11">test/reassemble_test.dart</a>
``` ```
ReassembleHandler ✔️ ReassembleHandler
unevaluated create ✔️ unevaluated create
unevaluated create ✔️ unevaluated create
``` ```
###  <a id="user-content-r0s12" href="#r0s12">test/selector_test.dart</a> ### ✔️ <a id="user-content-r0s12" href="#r0s12">test/selector_test.dart</a>
``` ```
asserts that builder/selector are not null ✔️ asserts that builder/selector are not null
Deep compare maps by default ✔️ Deep compare maps by default
Deep compare iterables by default ✔️ Deep compare iterables by default
Deep compare sets by default ✔️ Deep compare sets by default
Deep compare lists by default ✔️ Deep compare lists by default
custom shouldRebuid ✔️ custom shouldRebuid
passes `child` and `key` ✔️ passes `child` and `key`
calls builder if the callback changes ✔️ calls builder if the callback changes
works with MultiProvider ✔️ works with MultiProvider
don't call builder again if it rebuilds but selector returns the same thing ✔️ don't call builder again if it rebuilds but selector returns the same thing
call builder again if it rebuilds abd selector returns the a different variable ✔️ call builder again if it rebuilds abd selector returns the a different variable
Selector ✔️ Selector
Selector2 ✔️ Selector2
Selector3 ✔️ Selector3
Selector4 ✔️ Selector4
Selector5 ✔️ Selector5
Selector6 ✔️ Selector6
``` ```
###  <a id="user-content-r0s13" href="#r0s13">test/stateful_provider_test.dart</a> ### ✔️ <a id="user-content-r0s13" href="#r0s13">test/stateful_provider_test.dart</a>
``` ```
asserts ✔️ asserts
works with MultiProvider ✔️ works with MultiProvider
calls create only once ✔️ calls create only once
dispose ✔️ dispose
``` ```
###  <a id="user-content-r0s14" href="#r0s14">test/stream_provider_test.dart</a> ### ✔️ <a id="user-content-r0s14" href="#r0s14">test/stream_provider_test.dart</a>
``` ```
works with MultiProvider ✔️ works with MultiProvider
transition from stream to stream preserve state ✔️ transition from stream to stream preserve state
throws if stream has error and catchError is missing ✔️ throws if stream has error and catchError is missing
calls catchError if present and stream has error ✔️ calls catchError if present and stream has error
works with null ✔️ works with null
StreamProvider() crashes if builder is null ✔️ StreamProvider() crashes if builder is null
StreamProvider() StreamProvider()
create and dispose stream with builder ✔️ create and dispose stream with builder
crashes if builder is null ✔️ crashes if builder is null
``` ```
### ❌ <a id="user-content-r0s15" href="#r0s15">test/value_listenable_provider_test.dart</a> ### ❌ <a id="user-content-r0s15" href="#r0s15">test/value_listenable_provider_test.dart</a>
``` ```
valueListenableProvider valueListenableProvider
rebuilds when value change ✔️ rebuilds when value change
don't rebuild dependents by default ✔️ don't rebuild dependents by default
pass keys ✔️ pass keys
don't listen again if stream instance doesn't change ✔️ don't listen again if stream instance doesn't change
❌ pass updateShouldNotify ❌ pass updateShouldNotify
The following TestFailure object was thrown running a test: The following TestFailure object was thrown running a test:
Expected: <2> Expected: <2>

View File

@@ -3,10 +3,10 @@
**2** tests were completed in **116ms** with **0** passed, **1** failed and **1** skipped. **2** tests were completed in **116ms** with **0** passed, **1** failed and **1** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|[org.apache.pulsar.AddMissingPatchVersionTest](#r0s0)||1❌|1|116ms| |[org.apache.pulsar.AddMissingPatchVersionTest](#r0s0)||1❌|1✖️|116ms|
### ❌ <a id="user-content-r0s0" href="#r0s0">org.apache.pulsar.AddMissingPatchVersionTest</a> ### ❌ <a id="user-content-r0s0" href="#r0s0">org.apache.pulsar.AddMissingPatchVersionTest</a>
``` ```
testVersionStrings ✖️ testVersionStrings
❌ testVersionStrings ❌ testVersionStrings
java.lang.AssertionError: expected [1.2.1] but found [1.2.0] java.lang.AssertionError: expected [1.2.1] but found [1.2.0]
``` ```

File diff suppressed because it is too large Load Diff

View File

@@ -1,136 +1,136 @@
![Tests passed successfully](https://img.shields.io/badge/tests-67%20passed%2C%2012%20skipped-success) ![Tests passed successfully](https://img.shields.io/badge/tests-67%20passed%2C%2012%20skipped-success)
##  <a id="user-content-r0" href="#r0">fixtures/external/SilentNotes.trx</a> ## ✔️ <a id="user-content-r0" href="#r0">fixtures/external/SilentNotes.trx</a>
**79** tests were completed in **1s** with **67** passed, **0** failed and **12** skipped. **79** tests were completed in **1s** with **67** passed, **0** failed and **12** skipped.
|Test suite|Passed|Failed|Skipped|Time| |Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:| |:---|---:|---:|---:|---:|
|[VanillaCloudStorageClientTest.CloudStorageCredentialsTest](#r0s0)|6|||30ms| |[VanillaCloudStorageClientTest.CloudStorageCredentialsTest](#r0s0)|6✔️|||30ms|
|[VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest](#r0s1)|2||3|101ms| |[VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest](#r0s1)|2✔️||3✖️|101ms|
|[VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest](#r0s2)|4||3|166ms| |[VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest](#r0s2)|4✔️||3✖️|166ms|
|[VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest](#r0s3)|2|||7ms| |[VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest](#r0s3)|2✔️|||7ms|
|[VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest](#r0s4)|1||3|40ms| |[VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest](#r0s4)|1✔️||3✖️|40ms|
|[VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest](#r0s5)|1||3|15ms| |[VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest](#r0s5)|1✔️||3✖️|15ms|
|[VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest](#r0s6)|5|||16ms| |[VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest](#r0s6)|5✔️|||16ms|
|[VanillaCloudStorageClientTest.CloudStorageTokenTest](#r0s7)|9|||0ms| |[VanillaCloudStorageClientTest.CloudStorageTokenTest](#r0s7)|9✔️|||0ms|
|[VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest](#r0s8)|3|||3ms| |[VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest](#r0s8)|3✔️|||3ms|
|[VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest](#r0s9)|9|||12ms| |[VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest](#r0s9)|9✔️|||12ms|
|[VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest](#r0s10)|5|||13ms| |[VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest](#r0s10)|5✔️|||13ms|
|[VanillaCloudStorageClientTest.SecureStringExtensionsTest](#r0s11)|7|||0ms| |[VanillaCloudStorageClientTest.SecureStringExtensionsTest](#r0s11)|7✔️|||0ms|
|[VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest](#r0s12)|13|||43ms| |[VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest](#r0s12)|13✔️|||43ms|
###  <a id="user-content-r0s0" href="#r0s0">VanillaCloudStorageClientTest.CloudStorageCredentialsTest</a> ### ✔️ <a id="user-content-r0s0" href="#r0s0">VanillaCloudStorageClientTest.CloudStorageCredentialsTest</a>
``` ```
AreEqualWorksWithDifferentPassword ✔️ AreEqualWorksWithDifferentPassword
AreEqualWorksWithSameContent ✔️ AreEqualWorksWithSameContent
CorrectlyConvertsSecureStringToString ✔️ CorrectlyConvertsSecureStringToString
CorrectlyConvertsStringToSecureString ✔️ CorrectlyConvertsStringToSecureString
ValidateAcceptsValidCredentials ✔️ ValidateAcceptsValidCredentials
ValidateRejectsInvalidCredentials ✔️ ValidateRejectsInvalidCredentials
``` ```
###  <a id="user-content-r0s1" href="#r0s1">VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest</a> ### ✔️ <a id="user-content-r0s1" href="#r0s1">VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest</a>
``` ```
FileLifecycleWorks ✔️ FileLifecycleWorks
ReallyDoFetchToken ✖️ ReallyDoFetchToken
ReallyDoOpenAuthorizationPageInBrowser ✖️ ReallyDoOpenAuthorizationPageInBrowser
ReallyDoRefreshToken ✖️ ReallyDoRefreshToken
ThrowsAccessDeniedExceptionWithInvalidToken ✔️ ThrowsAccessDeniedExceptionWithInvalidToken
``` ```
###  <a id="user-content-r0s2" href="#r0s2">VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest</a> ### ✔️ <a id="user-content-r0s2" href="#r0s2">VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest</a>
``` ```
FileLifecycleWorks ✔️ FileLifecycleWorks
SanitizeCredentials_ChangesInvalidPrefix ✔️ SanitizeCredentials_ChangesInvalidPrefix
SecureSslConnectionWorks ✔️ SecureSslConnectionWorks
ThrowsWithHttpInsteadOfFtp ✔️ ThrowsWithHttpInsteadOfFtp
ThrowsWithInvalidPassword ✖️ ThrowsWithInvalidPassword
ThrowsWithInvalidUrl ✖️ ThrowsWithInvalidUrl
ThrowsWithInvalidUsername ✖️ ThrowsWithInvalidUsername
``` ```
###  <a id="user-content-r0s3" href="#r0s3">VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest</a> ### ✔️ <a id="user-content-r0s3" href="#r0s3">VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest</a>
``` ```
ChoosesCorrectUrlForGmxComEmail ✔️ ChoosesCorrectUrlForGmxComEmail
ChoosesCorrectUrlForGmxNetEmail ✔️ ChoosesCorrectUrlForGmxNetEmail
``` ```
###  <a id="user-content-r0s4" href="#r0s4">VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest</a> ### ✔️ <a id="user-content-r0s4" href="#r0s4">VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest</a>
``` ```
FileLifecycleWorks ✔️ FileLifecycleWorks
ReallyDoFetchToken ✖️ ReallyDoFetchToken
ReallyDoOpenAuthorizationPageInBrowser ✖️ ReallyDoOpenAuthorizationPageInBrowser
ReallyDoRefreshToken ✖️ ReallyDoRefreshToken
``` ```
###  <a id="user-content-r0s5" href="#r0s5">VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest</a> ### ✔️ <a id="user-content-r0s5" href="#r0s5">VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest</a>
``` ```
FileLifecycleWorks ✔️ FileLifecycleWorks
ReallyDoFetchToken ✖️ ReallyDoFetchToken
ReallyDoOpenAuthorizationPageInBrowser ✖️ ReallyDoOpenAuthorizationPageInBrowser
ReallyDoRefreshToken ✖️ ReallyDoRefreshToken
``` ```
###  <a id="user-content-r0s6" href="#r0s6">VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest</a> ### ✔️ <a id="user-content-r0s6" href="#r0s6">VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest</a>
``` ```
FileLifecycleWorks ✔️ FileLifecycleWorks
ParseGmxWebdavResponseCorrectly ✔️ ParseGmxWebdavResponseCorrectly
ParseStratoWebdavResponseCorrectly ✔️ ParseStratoWebdavResponseCorrectly
ThrowsWithInvalidPath ✔️ ThrowsWithInvalidPath
ThrowsWithInvalidUsername ✔️ ThrowsWithInvalidUsername
``` ```
###  <a id="user-content-r0s7" href="#r0s7">VanillaCloudStorageClientTest.CloudStorageTokenTest</a> ### ✔️ <a id="user-content-r0s7" href="#r0s7">VanillaCloudStorageClientTest.CloudStorageTokenTest</a>
``` ```
AreEqualWorksWithNullDate ✔️ AreEqualWorksWithNullDate
AreEqualWorksWithSameContent ✔️ AreEqualWorksWithSameContent
NeedsRefreshReturnsFalseForTokenFlow ✔️ NeedsRefreshReturnsFalseForTokenFlow
NeedsRefreshReturnsFalseIfNotExpired ✔️ NeedsRefreshReturnsFalseIfNotExpired
NeedsRefreshReturnsTrueIfExpired ✔️ NeedsRefreshReturnsTrueIfExpired
NeedsRefreshReturnsTrueIfNoExpirationDate ✔️ NeedsRefreshReturnsTrueIfNoExpirationDate
SetExpiryDateBySecondsWorks ✔️ SetExpiryDateBySecondsWorks
SetExpiryDateBySecondsWorksWithNull ✔️ SetExpiryDateBySecondsWorksWithNull
SetExpiryDateBySecondsWorksWithVeryShortPeriod ✔️ SetExpiryDateBySecondsWorksWithVeryShortPeriod
``` ```
###  <a id="user-content-r0s8" href="#r0s8">VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest</a> ### ✔️ <a id="user-content-r0s8" href="#r0s8">VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest</a>
``` ```
ParsesAllErrorCodesCorrectly ✔️ ParsesAllErrorCodesCorrectly
ParsesNullErrorCodeCorrectly ✔️ ParsesNullErrorCodeCorrectly
ParsesUnknownErrorCodeCorrectly ✔️ ParsesUnknownErrorCodeCorrectly
``` ```
###  <a id="user-content-r0s9" href="#r0s9">VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest</a> ### ✔️ <a id="user-content-r0s9" href="#r0s9">VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest</a>
``` ```
BuildAuthorizationRequestUrlEscapesParameters ✔️ BuildAuthorizationRequestUrlEscapesParameters
BuildAuthorizationRequestUrlLeavesOutOptionalParameters ✔️ BuildAuthorizationRequestUrlLeavesOutOptionalParameters
BuildAuthorizationRequestUrlThrowsWithMissingRedirectUrlForTokenFlow ✔️ BuildAuthorizationRequestUrlThrowsWithMissingRedirectUrlForTokenFlow
BuildAuthorizationRequestUrlUsesAllParameters ✔️ BuildAuthorizationRequestUrlUsesAllParameters
BuildAuthorizationRequestUrlUsesCodeVerifier ✔️ BuildAuthorizationRequestUrlUsesCodeVerifier
ParseRealWorldDropboxRejectResponse ✔️ ParseRealWorldDropboxRejectResponse
ParseRealWorldDropboxSuccessResponse ✔️ ParseRealWorldDropboxSuccessResponse
ParseRealWorldGoogleRejectResponse ✔️ ParseRealWorldGoogleRejectResponse
ParseRealWorldGoogleSuccessResponse ✔️ ParseRealWorldGoogleSuccessResponse
``` ```
###  <a id="user-content-r0s10" href="#r0s10">VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest</a> ### ✔️ <a id="user-content-r0s10" href="#r0s10">VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest</a>
``` ```
BuildOAuth2AuthorizationRequestUrlWorks ✔️ BuildOAuth2AuthorizationRequestUrlWorks
FetchTokenCanInterpretGoogleResponse ✔️ FetchTokenCanInterpretGoogleResponse
FetchTokenReturnsNullForDeniedAccess ✔️ FetchTokenReturnsNullForDeniedAccess
FetchTokenThrowsWithWrongState ✔️ FetchTokenThrowsWithWrongState
RefreshTokenCanInterpretGoogleResponse ✔️ RefreshTokenCanInterpretGoogleResponse
``` ```
###  <a id="user-content-r0s11" href="#r0s11">VanillaCloudStorageClientTest.SecureStringExtensionsTest</a> ### ✔️ <a id="user-content-r0s11" href="#r0s11">VanillaCloudStorageClientTest.SecureStringExtensionsTest</a>
``` ```
AreEqualsWorksCorrectly ✔️ AreEqualsWorksCorrectly
CorrectlyConvertsSecureStringToString ✔️ CorrectlyConvertsSecureStringToString
CorrectlyConvertsSecureStringToUnicodeBytes ✔️ CorrectlyConvertsSecureStringToUnicodeBytes
CorrectlyConvertsSecureStringToUtf8Bytes ✔️ CorrectlyConvertsSecureStringToUtf8Bytes
CorrectlyConvertsStringToSecureString ✔️ CorrectlyConvertsStringToSecureString
CorrectlyConvertsUnicodeBytesToSecureString ✔️ CorrectlyConvertsUnicodeBytesToSecureString
CorrectlyConvertsUtf8BytesToSecureString ✔️ CorrectlyConvertsUtf8BytesToSecureString
``` ```
###  <a id="user-content-r0s12" href="#r0s12">VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest</a> ### ✔️ <a id="user-content-r0s12" href="#r0s12">VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest</a>
``` ```
DecryptAfterDesrializationCanReadAllPropertiesBack ✔️ DecryptAfterDesrializationCanReadAllPropertiesBack
DecryptAfterDesrializationRespectsNullProperties ✔️ DecryptAfterDesrializationRespectsNullProperties
EncryptBeforeSerializationProtectsAllNecessaryProperties ✔️ EncryptBeforeSerializationProtectsAllNecessaryProperties
EncryptBeforeSerializationRespectsNullProperties ✔️ EncryptBeforeSerializationRespectsNullProperties
SerializedDatacontractCanBeReadBack ✔️ SerializedDatacontractCanBeReadBack
SerializedDatacontractDoesNotContainNullProperties ✔️ SerializedDatacontractDoesNotContainNullProperties
SerializedDatacontractDoesNotContainPlaintextData ✔️ SerializedDatacontractDoesNotContainPlaintextData
SerializedJsonCanBeReadBack ✔️ SerializedJsonCanBeReadBack
SerializedJsonDoesNotContainNullProperties ✔️ SerializedJsonDoesNotContainNullProperties
SerializedJsonDoesNotContainPlaintextData ✔️ SerializedJsonDoesNotContainPlaintextData
SerializedXmlCanBeReadBack ✔️ SerializedXmlCanBeReadBack
SerializedXmlDoesNotContainNullProperties ✔️ SerializedXmlDoesNotContainNullProperties
SerializedXmlDoesNotContainPlaintextData ✔️ SerializedXmlDoesNotContainPlaintextData
``` ```

View File

@@ -1,13 +0,0 @@
![Tests failed](https://img.shields.io/badge/tests-2%20passed%2C%201%20failed-critical)
## ❌ <a id="user-content-r0" href="#r0">fixtures/swift-xunit.xml</a>
**3** tests were completed in **220ms** with **2** passed, **1** failed and **0** skipped.
|Test suite|Passed|Failed|Skipped|Time|
|:---|---:|---:|---:|---:|
|[TestResults](#r0s0)|2✅|1❌||220ms|
### ❌ <a id="user-content-r0s0" href="#r0s0">TestResults</a>
```
AcmeLibTests.AcmeLibTests
✅ test_always_pass
✅ test_always_skip
❌ test_always_fail
```

View File

@@ -3,12 +3,12 @@
exports[`dart-json tests matches report snapshot 1`] = ` exports[`dart-json tests matches report snapshot 1`] = `
TestRunResult { TestRunResult {
"path": "fixtures/dart-json.json", "path": "fixtures/dart-json.json",
"suites": [ "suites": Array [
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "Test 1", "name": "Test 1",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "Passing test", "name": "Passing test",
@@ -19,11 +19,11 @@ TestRunResult {
}, },
TestGroupResult { TestGroupResult {
"name": "Test 1 Test 1.1", "name": "Test 1 Test 1.1",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": { "error": Object {
"details": "package:test_api expect "details": "package:test_api expect
test\\main_test.dart 13:9 main.<fn>.<fn>.<fn> test\\\\main_test.dart 13:9 main.<fn>.<fn>.<fn>
", ",
"line": 13, "line": 13,
"message": "Expected: <2> "message": "Expected: <2>
@@ -36,9 +36,9 @@ test\\main_test.dart 13:9 main.<fn>.<fn>.<fn>
"time": 20, "time": 20,
}, },
TestCaseResult { TestCaseResult {
"error": { "error": Object {
"details": "package:darttest/main.dart 2:3 throwError "details": "package:darttest/main.dart 2:3 throwError
test\\main_test.dart 17:9 main.<fn>.<fn>.<fn> test\\\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
", ",
"line": 17, "line": 17,
"message": "Exception: Some error", "message": "Exception: Some error",
@@ -52,10 +52,10 @@ test\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
}, },
TestGroupResult { TestGroupResult {
"name": "Test 2", "name": "Test 2",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": { "error": Object {
"details": "test\\main_test.dart 24:7 main.<fn>.<fn> "details": "test\\\\main_test.dart 24:7 main.<fn>.<fn>
", ",
"line": 24, "line": 24,
"message": "Exception: Some error", "message": "Exception: Some error",
@@ -72,12 +72,12 @@ test\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": null, "name": null,
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": { "error": Object {
"details": "dart:isolate _RawReceivePortImpl._handleMessage "details": "dart:isolate _RawReceivePortImpl._handleMessage
", ",
"line": 5, "line": 5,
@@ -108,12 +108,12 @@ test\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
exports[`dart-json tests report from rrousselGit/provider test results matches snapshot 1`] = ` exports[`dart-json tests report from rrousselGit/provider test results matches snapshot 1`] = `
TestRunResult { TestRunResult {
"path": "fixtures/external/flutter/provider-test-results.json", "path": "fixtures/external/flutter/provider-test-results.json",
"suites": [ "suites": Array [
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "valueListenableProvider", "name": "valueListenableProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "rebuilds when value change", "name": "rebuilds when value change",
@@ -139,7 +139,7 @@ TestRunResult {
"time": 22, "time": 22,
}, },
TestCaseResult { TestCaseResult {
"error": { "error": Object {
"details": "══╡ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK ╞════════════════════════════════════════════════════ "details": "══╡ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK ╞════════════════════════════════════════════════════
The following TestFailure object was thrown running a test: The following TestFailure object was thrown running a test:
Expected: <2> Expected: <2>
@@ -178,10 +178,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "ListenableProvider", "name": "ListenableProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "works with MultiProvider", "name": "works with MultiProvider",
@@ -252,7 +252,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "ListenableProvider value constructor", "name": "ListenableProvider value constructor",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "pass down key", "name": "pass down key",
@@ -269,7 +269,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "ListenableProvider stateful constructor", "name": "ListenableProvider stateful constructor",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "called with context", "name": "called with context",
@@ -295,10 +295,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "consumer", "name": "consumer",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "obtains value from Provider<T>", "name": "obtains value from Provider<T>",
@@ -321,7 +321,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "consumer2", "name": "consumer2",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "obtains value from Provider<T>", "name": "obtains value from Provider<T>",
@@ -344,7 +344,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "consumer3", "name": "consumer3",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "obtains value from Provider<T>", "name": "obtains value from Provider<T>",
@@ -367,7 +367,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "consumer4", "name": "consumer4",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "obtains value from Provider<T>", "name": "obtains value from Provider<T>",
@@ -390,7 +390,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "consumer5", "name": "consumer5",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "obtains value from Provider<T>", "name": "obtains value from Provider<T>",
@@ -413,7 +413,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "consumer6", "name": "consumer6",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "obtains value from Provider<T>", "name": "obtains value from Provider<T>",
@@ -439,10 +439,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "Use builder property, not child", "name": "Use builder property, not child",
@@ -453,7 +453,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "ChangeNotifierProvider", "name": "ChangeNotifierProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "value", "name": "value",
@@ -515,10 +515,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "ChangeNotifierProvider", "name": "ChangeNotifierProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "default", "name": "default",
@@ -535,7 +535,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "ListenableProvider", "name": "ListenableProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "default", "name": "default",
@@ -552,7 +552,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "Provider", "name": "Provider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "default", "name": "default",
@@ -569,7 +569,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "ProxyProvider", "name": "ProxyProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "0", "name": "0",
@@ -616,7 +616,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "MultiProvider", "name": "MultiProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "with 1 ChangeNotifierProvider default", "name": "with 1 ChangeNotifierProvider default",
@@ -690,10 +690,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "MultiProvider", "name": "MultiProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "throw if providers is null", "name": "throw if providers is null",
@@ -719,10 +719,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "works with MultiProvider", "name": "works with MultiProvider",
@@ -763,7 +763,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "StreamProvider()", "name": "StreamProvider()",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "create and dispose stream with builder", "name": "create and dispose stream with builder",
@@ -783,10 +783,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "watch in layoutbuilder", "name": "watch in layoutbuilder",
@@ -827,7 +827,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "BuildContext", "name": "BuildContext",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "internal selected value is updated", "name": "internal selected value is updated",
@@ -985,10 +985,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "ReassembleHandler", "name": "ReassembleHandler",
@@ -1014,10 +1014,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "works with MultiProvider", "name": "works with MultiProvider",
@@ -1076,7 +1076,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "FutureProvider()", "name": "FutureProvider()",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "crashes if builder is null", "name": "crashes if builder is null",
@@ -1090,10 +1090,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "works with MultiProvider", "name": "works with MultiProvider",
@@ -1104,7 +1104,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "Provider.of", "name": "Provider.of",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "throws if T is dynamic", "name": "throws if T is dynamic",
@@ -1139,7 +1139,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "Provider", "name": "Provider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "throws if the provided value is a Listenable/Stream", "name": "throws if the provided value is a Listenable/Stream",
@@ -1177,10 +1177,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "regression test #377", "name": "regression test #377",
@@ -1371,7 +1371,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "diagnostics", "name": "diagnostics",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "InheritedProvider.value", "name": "InheritedProvider.value",
@@ -1406,7 +1406,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "InheritedProvider.value()", "name": "InheritedProvider.value()",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "markNeedsNotifyDependents during startListening is noop", "name": "markNeedsNotifyDependents during startListening is noop",
@@ -1459,7 +1459,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "InheritedProvider()", "name": "InheritedProvider()",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "hasValue", "name": "hasValue",
@@ -1614,7 +1614,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "DeferredInheritedProvider.value()", "name": "DeferredInheritedProvider.value()",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "hasValue", "name": "hasValue",
@@ -1667,7 +1667,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "DeferredInheritedProvider()", "name": "DeferredInheritedProvider()",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "create can't call inherited widgets", "name": "create can't call inherited widgets",
@@ -1699,10 +1699,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "ListenableProxyProvider", "name": "ListenableProxyProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "throws if update is missing", "name": "throws if update is missing",
@@ -1743,7 +1743,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "ListenableProxyProvider variants", "name": "ListenableProxyProvider variants",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "ListenableProxyProvider", "name": "ListenableProxyProvider",
@@ -1787,10 +1787,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "asserts that builder/selector are not null", "name": "asserts that builder/selector are not null",
@@ -1900,10 +1900,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "", "name": "",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "asserts", "name": "asserts",
@@ -1935,10 +1935,10 @@ Unexpected number of calls
"totalTime": undefined, "totalTime": undefined,
}, },
TestSuiteResult { TestSuiteResult {
"groups": [ "groups": Array [
TestGroupResult { TestGroupResult {
"name": "ProxyProvider", "name": "ProxyProvider",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "throws if the provided value is a Listenable/Stream", "name": "throws if the provided value is a Listenable/Stream",
@@ -2009,7 +2009,7 @@ Unexpected number of calls
}, },
TestGroupResult { TestGroupResult {
"name": "ProxyProvider variants", "name": "ProxyProvider variants",
"tests": [ "tests": Array [
TestCaseResult { TestCaseResult {
"error": undefined, "error": undefined,
"name": "ProxyProvider2", "name": "ProxyProvider2",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,44 +0,0 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`swift-xunit tests report from swift test results matches snapshot 1`] = `
TestRunResult {
"path": "fixtures/swift-xunit.xml",
"suites": [
TestSuiteResult {
"groups": [
TestGroupResult {
"name": "AcmeLibTests.AcmeLibTests",
"tests": [
TestCaseResult {
"error": undefined,
"name": "test_always_pass",
"result": "success",
"time": 36.386333,
},
TestCaseResult {
"error": undefined,
"name": "test_always_skip",
"result": "success",
"time": 92.039167,
},
TestCaseResult {
"error": {
"details": undefined,
"line": undefined,
"message": undefined,
"path": undefined,
},
"name": "test_always_fail",
"result": "failed",
"time": 92.05175,
},
],
},
],
"name": "TestResults",
"totalTime": 220.47725000000003,
},
],
"totalTime": undefined,
}
`;

View File

@@ -0,0 +1,112 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<test-run id="0" runstate="Runnable" testcasecount="9" result="Failed" total="9" passed="3" failed="5" inconclusive="0" skipped="1" asserts="5" engine-version="3.12.0.0" clr-version="3.1.16" start-time="2021-06-28 20:23:41Z" end-time="2021-06-28 20:23:41Z" duration="0.230308">
<command-line><![CDATA[C:\Users\Michal\.dotnet\tools\.store\nunit.consolerunner.netcore\3.12.0-beta2\nunit.consolerunner.netcore\3.12.0-beta2\tools\netcoreapp3.1\any\nunit3-console.dll reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml]]></command-line>
<test-suite type="Assembly" id="1-1011" name="DotnetTests.NUnitV3Tests.dll" fullname="C:/Users/Michal/Workspace/dorny/test-reporter/reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll" runstate="Runnable" testcasecount="9" result="Failed" site="Child" start-time="2021-06-28T20:23:41.4594179Z" end-time="2021-06-28T20:23:41.5420313Z" duration="0.082553" total="9" passed="3" failed="5" warnings="0" inconclusive="0" skipped="1" asserts="5">
<environment framework-version="3.13.2.0" clr-version="3.1.16" os-version="Microsoft Windows 10.0.19041" platform="Win32NT" cwd="C:\Users\Michal\Workspace\dorny\test-reporter" machine-name="DORNY-PC" user="Michal" user-domain="DORNY-PC" culture="sk-SK" uiculture="en-US" os-architecture="x64" />
<settings>
<setting name="DisposeRunners" value="True" />
<setting name="WorkDirectory" value="C:\Users\Michal\Workspace\dorny\test-reporter" />
<setting name="NumberOfTestWorkers" value="4" />
</settings>
<properties>
<property name="_PID" value="30996" />
<property name="_APPDOMAIN" value="nunit3-console" />
</properties>
<failure>
<message><![CDATA[One or more child tests had errors]]></message>
</failure>
<test-suite type="TestSuite" id="1-1012" name="DotnetTests" fullname="DotnetTests" runstate="Runnable" testcasecount="9" result="Failed" site="Child" start-time="2021-06-28T20:23:41.4647482Z" end-time="2021-06-28T20:23:41.5420271Z" duration="0.077277" total="9" passed="3" failed="5" warnings="0" inconclusive="0" skipped="1" asserts="5">
<failure>
<message><![CDATA[One or more child tests had errors]]></message>
</failure>
<test-suite type="TestSuite" id="1-1013" name="XUnitTests" fullname="DotnetTests.XUnitTests" runstate="Runnable" testcasecount="9" result="Failed" site="Child" start-time="2021-06-28T20:23:41.4649710Z" end-time="2021-06-28T20:23:41.5420231Z" duration="0.077053" total="9" passed="3" failed="5" warnings="0" inconclusive="0" skipped="1" asserts="5">
<failure>
<message><![CDATA[One or more child tests had errors]]></message>
</failure>
<test-suite type="TestFixture" id="1-1000" name="CalculatorTests" fullname="DotnetTests.XUnitTests.CalculatorTests" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" testcasecount="9" result="Failed" site="Child" start-time="2021-06-28T20:23:41.4661195Z" end-time="2021-06-28T20:23:41.5420143Z" duration="0.075896" total="9" passed="3" failed="5" warnings="0" inconclusive="0" skipped="1" asserts="5">
<failure>
<message><![CDATA[One or more child tests had errors]]></message>
</failure>
<test-case id="1-1004" name="Exception_In_TargetTest" fullname="DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest" methodname="Exception_In_TargetTest" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="2033520428" result="Failed" label="Error" start-time="2021-06-28T20:23:41.4684284Z" end-time="2021-06-28T20:23:41.4911288Z" duration="0.022805" asserts="0">
<failure>
<message><![CDATA[System.DivideByZeroException : Attempted to divide by zero.]]></message>
<stack-trace><![CDATA[ at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.Unit\Calculator.cs:line 9
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 33]]></stack-trace>
</failure>
</test-case>
<test-case id="1-1005" name="Exception_In_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test" methodname="Exception_In_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="145176317" result="Failed" label="Error" start-time="2021-06-28T20:23:41.4930398Z" end-time="2021-06-28T20:23:41.4935666Z" duration="0.000528" asserts="0">
<failure>
<message><![CDATA[System.Exception : Test]]></message>
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 39]]></stack-trace>
</failure>
</test-case>
<test-case id="1-1003" name="Failing_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Failing_Test" methodname="Failing_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="189717168" result="Failed" start-time="2021-06-28T20:23:41.4935910Z" end-time="2021-06-28T20:23:41.5217516Z" duration="0.028162" asserts="1">
<failure>
<message><![CDATA[ Expected: 3
But was: 2
]]></message>
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 27
]]></stack-trace>
</failure>
<assertions>
<assertion result="Failed">
<message><![CDATA[ Expected: 3
But was: 2
]]></message>
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 27
]]></stack-trace>
</assertion>
</assertions>
</test-case>
<test-suite type="Theory" id="1-1010" name="Is_Even_Number" fullname="DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" testcasecount="2" result="Failed" site="Child" start-time="2021-06-28T20:23:41.5217837Z" end-time="2021-06-28T20:23:41.5251025Z" duration="0.003318" total="2" passed="1" failed="1" warnings="0" inconclusive="0" skipped="0" asserts="2">
<properties>
<property name="_JOINTYPE" value="Combinatorial" />
</properties>
<failure>
<message><![CDATA[One or more child tests had errors]]></message>
</failure>
<test-case id="1-1008" name="Is_Even_Number(2)" fullname="DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(2)" methodname="Is_Even_Number" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="2002556739" result="Passed" start-time="2021-06-28T20:23:41.5222381Z" end-time="2021-06-28T20:23:41.5228607Z" duration="0.000622" asserts="1" />
<test-case id="1-1009" name="Is_Even_Number(3)" fullname="DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(3)" methodname="Is_Even_Number" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="1722214143" result="Failed" start-time="2021-06-28T20:23:41.5228803Z" end-time="2021-06-28T20:23:41.5239781Z" duration="0.001098" asserts="1">
<failure>
<message><![CDATA[ Expected: True
But was: False
]]></message>
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 61
]]></stack-trace>
</failure>
<assertions>
<assertion result="Failed">
<message><![CDATA[ Expected: True
But was: False
]]></message>
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 61
]]></stack-trace>
</assertion>
</assertions>
</test-case>
</test-suite>
<test-case id="1-1001" name="Passing_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Passing_Test" methodname="Passing_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="550330290" result="Passed" start-time="2021-06-28T20:23:41.5260365Z" end-time="2021-06-28T20:23:41.5262756Z" duration="0.000238" asserts="1" />
<test-case id="1-1002" name="Passing_Test_With_Description" fullname="DotnetTests.XUnitTests.CalculatorTests.Passing_Test_With_Description" methodname="Passing_Test_With_Description" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="1693317298" result="Passed" start-time="2021-06-28T20:23:41.5263998Z" end-time="2021-06-28T20:23:41.5265354Z" duration="0.000135" asserts="1">
<properties>
<property name="Description" value="Some description" />
</properties>
</test-case>
<test-case id="1-1007" name="Skipped_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Skipped_Test" methodname="Skipped_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Ignored" seed="1512653931" result="Skipped" label="Ignored" start-time="2021-06-28T20:23:41.5265550Z" end-time="2021-06-28T20:23:41.5269525Z" duration="0.000398" asserts="0">
<properties>
<property name="_SKIPREASON" value="Skipped" />
</properties>
<reason>
<message><![CDATA[Skipped]]></message>
</reason>
</test-case>
<test-case id="1-1006" name="Timeout_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Timeout_Test" methodname="Timeout_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="258810529" result="Failed" label="Test exceeded Timeout value 1ms." start-time="2021-06-28T20:23:41.5269651Z" end-time="2021-06-28T20:23:41.5419118Z" duration="0.014949" asserts="0">
<properties>
<property name="Timeout" value="1" />
</properties>
<failure />
</test-case>
</test-suite>
</test-suite>
</test-suite>
</test-suite>
</test-run>

View File

@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="jest tests" tests="0" failures="0" errors="0" time="11.299">
<testsuite name="__tests__\main.test.js" errors="0" failures="0" skipped="0" timestamp="2020-10-27T21:39:41" time="0.486" tests="0">
</testsuite>
</testsuites>

View File

@@ -1,2 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<testsuites name="my_package.test_foo" tests="3" failures="1" errors="0" time="6.79"><testsuite name="my_package.test_foo.launch_tests" tests="3" failures="1" errors="0" skipped="0" time="6.79"><testcase classname="my_package.TestFoo" name="test_normal_case" time="2.172" /><testcase classname="my_package.TestFoo" name="test_other_case" time="4.558"><failure message="Traceback (most recent call last):&#10; File &quot;/home/redacted/test_foo.py&quot;, line 183, in test_other_case&#10; self.assertFalse(True)&#10;AssertionError: True is not false&#10;" /></testcase><testcase classname="my_package.TestFoo" name="test_yet_another_case" time="0.06" /></testsuite></testsuites>

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="React components test" tests="1" failures="0" errors="0" time="1.0">
<testsuite name="&lt;Component /&gt;" errors="0" failures="0" skipped="0" timestamp="2021-01-24T19:21:45" time="0.798" tests="1">
<testcase classname="" name="&lt;Component /&gt; should render properly" time="0.704">
</testcase>
</testsuite>
</testsuites>

View File

@@ -0,0 +1,125 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<test-run id="2" name="mock-assembly.dll" fullname="D:\Dev\NUnit\nunit-3.0\work\bin\vs2008\Debug\mock-assembly.dll" testcasecount="25" result="Failed" time="0.154" total="18" passed="12" failed="2" inconclusive="1" skipped="3" asserts="2" run-date="2011-07-26" start-time="11:34:27">
<environment nunit-version="1.0.0.0" clr-version="2.0.50727.4961" os-version="Microsoft Windows NT 6.1.7600.0" platform="Win32NT" cwd="D:\Dev\NUnit\nunit-3.0\work\bin\vs2008\Debug" machine-name="CHARLIE-LAPTOP" user="charlie" user-domain="charlie-laptop" culture="en-US" uiculture="en-US" />
<test-suite type="Assembly" id="1036" name="mock-assembly.dll" fullname="D:\Dev\NUnit\nunit-3.0\work\bin\vs2008\Debug\mock-assembly.dll" testcasecount="25" result="Failed" time="0.154" total="18" passed="12" failed="2" inconclusive="1" skipped="3" asserts="2">
<properties>
<property name="_PID" value="11928" />
<property name="_APPDOMAIN" value="test-domain-mock-assembly.dll" />
</properties>
<failure>
<message><![CDATA[Child test failed]]></message>
</failure>
<test-suite type="TestFixture" id="1000" name="MockTestFixture" fullname="NUnit.Tests.Assemblies.MockTestFixture" testcasecount="11" result="Failed" time="0.119" total="10" passed="4" failed="2" inconclusive="1" skipped="3" asserts="0">
<properties>
<property name="Category" value="FixtureCategory" />
<property name="Description" value="Fake Test Fixture" />
</properties>
<failure>
<message><![CDATA[Child test failed]]></message>
</failure>
<test-case id="1005" name="FailingTest" fullname="NUnit.Tests.Assemblies.MockTestFixture.FailingTest" result="Failed" time="0.023" asserts="0">
<failure>
<message><![CDATA[Intentional failure]]></message>
<stack-trace><![CDATA[ at NUnit.Framework.Assert.Fail(String message, Object[] args) in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\framework\Assert.cs:line 142
at NUnit.Framework.Assert.Fail(String message) in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\framework\Assert.cs:line 152
at NUnit.Tests.Assemblies.MockTestFixture.FailingTest() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 121]]></stack-trace>
</failure>
</test-case>
<test-case id="1010" name="InconclusiveTest" fullname="NUnit.Tests.Assemblies.MockTestFixture.InconclusiveTest" result="Inconclusive" time="0.001" asserts="0" />
<test-case id="1001" name="MockTest1" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest1" result="Passed" time="0.000" asserts="0">
<properties>
<property name="Description" value="Mock Test #1" />
</properties>
</test-case>
<test-case id="1002" name="MockTest2" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest2" result="Passed" time="0.000" asserts="0">
<properties>
<property name="Severity" value="Critical" />
<property name="Description" value="This is a really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really long description" />
<property name="Category" value="MockCategory" />
</properties>
</test-case>
<test-case id="1003" name="MockTest3" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest3" result="Passed" time="0.000" asserts="0">
<properties>
<property name="Category" value="AnotherCategory" />
<property name="Category" value="MockCategory" />
</properties>
</test-case>
<test-case id="1007" name="MockTest4" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest4" result="Skipped" label="Ignored" time="0.000" asserts="0">
<properties>
<property name="Category" value="Foo" />
<property name="_SKIPREASON" value="ignoring this test method for now" />
</properties>
<reason>
<message><![CDATA[ignoring this test method for now]]></message>
</reason>
</test-case>
<test-case id="1004" name="MockTest5" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest5" result="Skipped" label="Invalid" time="0.000" asserts="0">
<properties>
<property name="_SKIPREASON" value="Method is not public" />
</properties>
<reason>
<message><![CDATA[Method is not public]]></message>
</reason>
</test-case>
<test-case id="1009" name="NotRunnableTest" fullname="NUnit.Tests.Assemblies.MockTestFixture.NotRunnableTest" result="Skipped" label="Invalid" time="0.000" asserts="0">
<properties>
<property name="_SKIPREASON" value="No arguments were provided" />
</properties>
<reason>
<message><![CDATA[No arguments were provided]]></message>
</reason>
</test-case>
<test-case id="1011" name="TestWithException" fullname="NUnit.Tests.Assemblies.MockTestFixture.TestWithException" result="Failed" label="Error" time="0.002" asserts="0">
<failure>
<message><![CDATA[System.ApplicationException : Intentional Exception]]></message>
<stack-trace><![CDATA[ at NUnit.Tests.Assemblies.MockTestFixture.MethodThrowsException() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 158
at NUnit.Tests.Assemblies.MockTestFixture.TestWithException() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 153]]></stack-trace>
</failure>
</test-case>
<test-case id="1006" name="TestWithManyProperties" fullname="NUnit.Tests.Assemblies.MockTestFixture.TestWithManyProperties" result="Passed" time="0.000" asserts="0">
<properties>
<property name="TargetMethod" value="SomeClassName" />
<property name="Size" value="5" />
</properties>
</test-case>
</test-suite>
<test-suite type="TestFixture" id="1023" name="BadFixture" fullname="NUnit.Tests.BadFixture" testcasecount="1" result="Skipped" label="Invalid" time="0.000" total="0" passed="0" failed="0" inconclusive="0" skipped="0" asserts="0">
<properties>
<property name="_SKIPREASON" value="No suitable constructor was found" />
</properties>
<reason>
<message><![CDATA[No suitable constructor was found]]></message>
</reason>
</test-suite>
<test-suite type="TestFixture" id="1025" name="FixtureWithTestCases" fullname="NUnit.Tests.FixtureWithTestCases" testcasecount="2" result="Passed" time="0.010" total="2" passed="2" failed="0" inconclusive="0" skipped="0" asserts="2">
<test-suite type="ParameterizedMethod" id="1026" name="MethodWithParameters" fullname="NUnit.Tests.FixtureWithTestCases.MethodWithParameters" testcasecount="2" result="Passed" time="0.009" total="2" passed="2" failed="0" inconclusive="0" skipped="0" asserts="2">
<test-case id="1027" name="MethodWithParameters(2,2)" fullname="NUnit.Tests.FixtureWithTestCases.MethodWithParameters(2,2)" result="Passed" time="0.006" asserts="1" />
<test-case id="1028" name="MethodWithParameters(9,11)" fullname="NUnit.Tests.FixtureWithTestCases.MethodWithParameters(9,11)" result="Passed" time="0.000" asserts="1" />
</test-suite>
</test-suite>
<test-suite type="TestFixture" id="1016" name="IgnoredFixture" fullname="NUnit.Tests.IgnoredFixture" testcasecount="3" result="Skipped" label="Ignored" time="0.000" total="0" passed="0" failed="0" inconclusive="0" skipped="0" asserts="0">
<properties>
<property name="_SKIPREASON" value="" />
</properties>
<reason>
<message><![CDATA[]]></message>
</reason>
</test-suite>
<test-suite type="ParameterizedFixture" id="1029" name="ParameterizedFixture" fullname="NUnit.Tests.ParameterizedFixture" testcasecount="4" result="Passed" time="0.007" total="4" passed="4" failed="0" inconclusive="0" skipped="0" asserts="0">
<test-suite type="TestFixture" id="1030" name="ParameterizedFixture(42)" fullname="NUnit.Tests.ParameterizedFixture(42)" testcasecount="2" result="Passed" time="0.003" total="2" passed="2" failed="0" inconclusive="0" skipped="0" asserts="0">
<test-case id="1031" name="Test1" fullname="NUnit.Tests.ParameterizedFixture(42).Test1" result="Passed" time="0.000" asserts="0" />
<test-case id="1032" name="Test2" fullname="NUnit.Tests.ParameterizedFixture(42).Test2" result="Passed" time="0.000" asserts="0" />
</test-suite>
<test-suite type="TestFixture" id="1033" name="ParameterizedFixture(5)" fullname="NUnit.Tests.ParameterizedFixture(5)" testcasecount="2" result="Passed" time="0.002" total="2" passed="2" failed="0" inconclusive="0" skipped="0" asserts="0">
<test-case id="1034" name="Test1" fullname="NUnit.Tests.ParameterizedFixture(5).Test1" result="Passed" time="0.000" asserts="0" />
<test-case id="1035" name="Test2" fullname="NUnit.Tests.ParameterizedFixture(5).Test2" result="Passed" time="0.000" asserts="0" />
</test-suite>
</test-suite>
<test-suite type="TestFixture" id="1012" name="OneTestCase" fullname="NUnit.Tests.Singletons.OneTestCase" testcasecount="1" result="Passed" time="0.001" total="1" passed="1" failed="0" inconclusive="0" skipped="0" asserts="0">
<test-case id="1013" name="TestCase" fullname="NUnit.Tests.Singletons.OneTestCase.TestCase" result="Passed" time="0.000" asserts="0" />
</test-suite>
<test-suite type="TestFixture" id="1014" name="MockTestFixture" fullname="NUnit.Tests.TestAssembly.MockTestFixture" testcasecount="1" result="Passed" time="0.001" total="1" passed="1" failed="0" inconclusive="0" skipped="0" asserts="0">
<test-case id="1015" name="MyTest" fullname="NUnit.Tests.TestAssembly.MockTestFixture.MyTest" result="Passed" time="0.001" asserts="0" />
</test-suite>
</test-suite>
</test-run>

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="TestResults" errors="0" tests="3" failures="1" time="0.22047725">
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_pass" time="0.036386333">
</testcase>
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_skip" time="0.092039167">
</testcase>
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_fail" time="0.09205175">
<failure message="failed"></failure>
</testcase>
</testsuite>
</testsuites>

View File

@@ -72,22 +72,4 @@ describe('java-junit tests', () => {
fs.mkdirSync(path.dirname(outputPath), {recursive: true}) fs.mkdirSync(path.dirname(outputPath), {recursive: true})
fs.writeFileSync(outputPath, report) fs.writeFileSync(outputPath, report)
}) })
it('parses empty failures in test results', async () => {
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'java', 'empty_failures.xml')
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
const trackedFiles: string[] = []
const opts: ParseOptions = {
parseErrors: true,
trackedFiles
}
const parser = new JavaJunitParser(opts)
const result = await parser.parse(filePath, fileContent)
expect(result.result === 'failed')
expect(result.failed === 1)
})
}) })

View File

@@ -1,75 +0,0 @@
import {parseStackTraceElement} from '../src/parsers/java-junit/java-stack-trace-element-parser'
describe('parseStackTraceLine tests', () => {
it('empty line is not parsed', async () => {
const line = ''
expect(parseStackTraceElement(line)).toBe(undefined)
})
describe('java class', () => {
it('simple', async () => {
const line =
'at org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings(AddMissingPatchVersionTest.java:29)'
expect(parseStackTraceElement(line)).toEqual({
tracePath: 'org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings',
fileName: 'AddMissingPatchVersionTest.java',
lineStr: '29'
})
})
it('inner class', async () => {
const line = 'at com.foo.Main$Inner.run(Main.java:29)'
expect(parseStackTraceElement(line)).toEqual({
tracePath: 'com.foo.Main$Inner.run',
fileName: 'Main.java',
lineStr: '29'
})
})
it('starts with whitespaces', async () => {
const line =
' \tat org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings(AddMissingPatchVersionTest.java:29)'
expect(parseStackTraceElement(line)).toEqual({
tracePath: 'org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings',
fileName: 'AddMissingPatchVersionTest.java',
lineStr: '29'
})
})
describe('since Java 9', () => {
it('with classloader and module', async () => {
// Based on Java 9 StackTraceElement.toString() Doc: https://docs.oracle.com/javase/9/docs/api/java/lang/StackTraceElement.html#toString--
const line = 'at com.foo.loader/foo@9.0/com.foo.Main.run(Main.java:101)'
expect(parseStackTraceElement(line)).toEqual({
classLoader: 'com.foo.loader',
moduleNameAndVersion: 'foo@9.0',
tracePath: 'com.foo.Main.run',
fileName: 'Main.java',
lineStr: '101'
})
})
it('with classloader', async () => {
const line = 'at com.foo.loader//com.foo.Main.run(Main.java:101)'
expect(parseStackTraceElement(line)).toEqual({
classLoader: 'com.foo.loader',
moduleNameAndVersion: undefined,
tracePath: 'com.foo.Main.run',
fileName: 'Main.java',
lineStr: '101'
})
})
})
})
describe('Kotlin class', () => {
it('method name containing whitespaces', async () => {
const line = 'at com.foo.Main.method with whitespaces(Main.kt:18)'
expect(parseStackTraceElement(line)).toEqual({
tracePath: 'com.foo.Main.method with whitespaces',
fileName: 'Main.kt',
lineStr: '18'
})
})
})
})

View File

@@ -7,7 +7,7 @@ import {getReport} from '../src/report/get-report'
import {normalizeFilePath} from '../src/utils/path-utils' import {normalizeFilePath} from '../src/utils/path-utils'
describe('jest-junit tests', () => { describe('jest-junit tests', () => {
it('produces empty test run result when there are no test cases in the testsuites element', async () => { it('produces empty test run result when there are no test cases', async () => {
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'jest-junit.xml') const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'jest-junit.xml')
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath)) const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'}) const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
@@ -23,22 +23,6 @@ describe('jest-junit tests', () => {
expect(result.result).toBe('success') expect(result.result).toBe('success')
}) })
it('produces empty test run result when there are no test cases in a nested testsuite element', async () => {
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'jest-junit-empty-testsuite.xml')
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
const opts: ParseOptions = {
parseErrors: true,
trackedFiles: []
}
const parser = new JestJunitParser(opts)
const result = await parser.parse(filePath, fileContent)
expect(result.tests).toBe(0)
expect(result.result).toBe('success')
})
it('report from ./reports/jest test results matches snapshot', async () => { it('report from ./reports/jest test results matches snapshot', async () => {
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml') const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
const outputPath = path.join(__dirname, '__outputs__', 'jest-junit.md') const outputPath = path.join(__dirname, '__outputs__', 'jest-junit.md')
@@ -82,27 +66,4 @@ describe('jest-junit tests', () => {
fs.mkdirSync(path.dirname(outputPath), {recursive: true}) fs.mkdirSync(path.dirname(outputPath), {recursive: true})
fs.writeFileSync(outputPath, report) fs.writeFileSync(outputPath, report)
}) })
it('report from #235 testing react components named <ComponentName />', async () => {
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'jest', 'jest-react-component-test-results.xml')
const trackedFilesPath = path.join(__dirname, 'fixtures', 'external', 'jest', 'files.txt')
const outputPath = path.join(__dirname, '__outputs__', 'jest-react-component-test-results.md')
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
const trackedFiles = fs.readFileSync(trackedFilesPath, {encoding: 'utf8'}).split(/\n\r?/g)
const opts: ParseOptions = {
parseErrors: true,
trackedFiles
//workDir: '/home/dorny/dorny/jest/'
}
const parser = new JestJunitParser(opts)
const result = await parser.parse(filePath, fileContent)
expect(result).toMatchSnapshot()
const report = getReport([result])
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
fs.writeFileSync(outputPath, report)
})
}) })

View File

@@ -1,30 +0,0 @@
import * as fs from 'fs'
import * as path from 'path'
import {SwiftXunitParser} from '../src/parsers/swift-xunit/swift-xunit-parser'
import {ParseOptions} from '../src/test-parser'
import {getReport} from '../src/report/get-report'
import {normalizeFilePath} from '../src/utils/path-utils'
describe('swift-xunit tests', () => {
it('report from swift test results matches snapshot', async () => {
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml')
const outputPath = path.join(__dirname, '__outputs__', 'swift-xunit.md')
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
const trackedFiles = ['Package.swift', 'Sources/AcmeLib/AcmeLib.swift', 'Tests/AcmeLibTests/AcmeLibTests.swift']
const opts: ParseOptions = {
parseErrors: true,
trackedFiles
}
const parser = new SwiftXunitParser(opts)
const result = await parser.parse(filePath, fileContent)
expect(result).toMatchSnapshot()
const report = getReport([result])
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
fs.writeFileSync(outputPath, report)
})
})

View File

@@ -11,7 +11,7 @@ inputs:
required: true required: true
path: path:
description: | description: |
Comma-separated list of paths to test results Coma separated list of paths to test results
Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob) Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob)
All matched result files must be of same format All matched result files must be of same format
required: true required: true
@@ -31,14 +31,13 @@ inputs:
- java-junit - java-junit
- jest-junit - jest-junit
- mocha-json - mocha-json
- swift-xunit
required: true required: true
list-suites: list-suites:
description: | description: |
Limits which test suites are listed. Supported options: Limits which test suites are listed. Supported options:
- all - all
- only-failed - only-failed
required: false required: true
default: 'all' default: 'all'
list-tests: list-tests:
description: | description: |
@@ -46,20 +45,16 @@ inputs:
- all - all
- only-failed - only-failed
- none - none
required: false required: true
default: 'all' default: 'all'
max-annotations: max-annotations:
description: | description: |
Limits number of created annotations with error message and stack trace captured during test execution. Limits number of created annotations with error message and stack trace captured during test execution.
Must be less or equal to 50. Must be less or equal to 50.
required: false required: true
default: '10' default: '10'
fail-on-error: fail-on-error:
description: Set this action as failed if test report contain any failed test description: Set this action as failed if test report contain any failed test
required: false
default: 'true'
fail-on-empty:
description: Set this action as failed if no test results were found
required: true required: true
default: 'true' default: 'true'
working-directory: working-directory:
@@ -90,12 +85,8 @@ outputs:
description: Count of skipped tests description: Count of skipped tests
time: time:
description: Test execution time [ms] description: Test execution time [ms]
url:
description: Check run URL
url_html:
description: Check run URL HTML
runs: runs:
using: 'node20' using: 'node12'
main: 'dist/index.js' main: 'dist/index.js'
branding: branding:
color: blue color: blue

47288
dist/index.js generated vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

186
dist/licenses.txt generated vendored
View File

@@ -12,27 +12,9 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
@actions/exec @actions/exec
MIT MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/github @actions/github
MIT MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/http-client @actions/http-client
MIT MIT
@@ -61,37 +43,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/io @actions/io
MIT MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@fastify/busboy
MIT
Copyright Brian White. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
@nodelib/fs.scandir @nodelib/fs.scandir
MIT MIT
@@ -1024,6 +975,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.
is-plain-object
MIT
The MIT License (MIT)
Copyright (c) 2014-2017, Jon Schlinkert.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
json-buffer json-buffer
MIT MIT
Copyright (c) 2013 Dominic Tarr Copyright (c) 2013 Dominic Tarr
@@ -1052,6 +1028,28 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keyv keyv
MIT MIT
MIT License
Copyright (c) 2017 Luke Childs
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
lowercase-keys lowercase-keys
MIT MIT
@@ -1120,7 +1118,7 @@ mimic-response
MIT MIT
MIT License MIT License
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
@@ -1129,6 +1127,32 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
node-fetch
MIT
The MIT License (MIT)
Copyright (c) 2016 David Frank
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
normalize-url normalize-url
MIT MIT
MIT License MIT License
@@ -1223,30 +1247,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.
queue-microtask
MIT
The MIT License (MIT)
Copyright (c) Feross Aboukhadijeh
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
quick-lru quick-lru
MIT MIT
MIT License MIT License
@@ -1454,31 +1454,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.
undici
MIT
MIT License
Copyright (c) Matteo Collina and Undici contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
universal-user-agent universal-user-agent
ISC ISC
# [ISC License](https://spdx.org/licenses/ISC) # [ISC License](https://spdx.org/licenses/ISC)
@@ -1490,19 +1465,6 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
uuid
MIT
The MIT License (MIT)
Copyright (c) 2010-2020 Robert Kieffer and other contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
wrappy wrappy
ISC ISC
The ISC License The ISC License

2
dist/sourcemap-register.js generated vendored

File diff suppressed because one or more lines are too long

15702
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "test-check", "name": "test-check",
"version": "1.7.0", "version": "0.0.0",
"private": true, "private": true,
"description": "Presents test results from popular testing frameworks as Github check run", "description": "Presents test results from popular testing frameworks as Github check run",
"main": "lib/main.js", "main": "lib/main.js",
@@ -9,13 +9,12 @@
"format": "prettier --write **/*.ts", "format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts", "format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts", "lint": "eslint src/**/*.ts",
"package": "ncc build --license licenses.txt && eolConverter lf 'dist/*'", "package": "ncc build --source-map --license licenses.txt",
"version": "npm run build && npm run package && git add dist/*",
"test": "jest --ci --reporters=default --reporters=jest-junit", "test": "jest --ci --reporters=default --reporters=jest-junit",
"jest:updatesnapshot": "jest --updateSnapshot",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test", "all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"", "dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"",
"dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"", "dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"",
"dotnet-nunit-fixture": "nunit.exe reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml",
"jest-fixture": "cd \"reports/jest\" && npm test", "jest-fixture": "cd \"reports/jest\" && npm test",
"mocha-fixture": "cd \"reports/mocha\" && npm test" "mocha-fixture": "cd \"reports/mocha\" && npm test"
}, },
@@ -32,42 +31,37 @@
"author": "Michal Dorner <dorner.michal@gmail.com>", "author": "Michal Dorner <dorner.michal@gmail.com>",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.10.1", "@actions/core": "^1.2.6",
"@actions/exec": "^1.1.1", "@actions/exec": "^1.0.4",
"@actions/github": "^6.0.0", "@actions/github": "^4.0.0",
"adm-zip": "^0.5.10", "adm-zip": "^0.5.3",
"fast-glob": "^3.3.2", "fast-glob": "^3.2.5",
"got": "^11.8.2", "got": "^11.8.2",
"picomatch": "^3.0.1", "picomatch": "^2.2.2",
"xml2js": "^0.6.2" "xml2js": "^0.4.23"
}, },
"devDependencies": { "devDependencies": {
"@octokit/types": "^12.4.0", "@octokit/types": "^6.12.0",
"@octokit/webhooks": "^12.0.10", "@octokit/webhooks": "^7.21.0",
"@octokit/webhooks-types": "^7.3.1", "@types/adm-zip": "^0.4.33",
"@types/adm-zip": "^0.5.5",
"@types/github-slugger": "^1.3.0", "@types/github-slugger": "^1.3.0",
"@types/jest": "^29.5.11", "@types/jest": "^26.0.20",
"@types/node": "^20.10.4", "@types/node": "^14.14.20",
"@types/picomatch": "^2.3.3", "@types/picomatch": "^2.2.1",
"@types/xml2js": "^0.4.14", "@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^6.14.0", "@typescript-eslint/parser": "^4.16.1",
"@vercel/ncc": "^0.38.1", "@vercel/ncc": "^0.27.0",
"eol-converter-cli": "^1.0.8", "eslint": "^7.21.0",
"eslint": "^8.55.0", "eslint-plugin-github": "^4.1.2",
"eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-jest": "^24.1.7",
"eslint-plugin-github": "^4.10.1", "jest": "^26.6.3",
"eslint-plugin-import": "^2.29.0", "jest-circus": "^26.6.3",
"eslint-plugin-jest": "^27.6.0", "jest-junit": "^12.0.0",
"eslint-plugin-prettier": "^5.0.1", "js-yaml": "^4.0.0",
"jest": "^29.7.0", "prettier": "2.2.1",
"jest-circus": "^29.7.0", "ts-jest": "^26.5.3",
"jest-junit": "^16.0.0", "typescript": "^4.2.3"
"js-yaml": "^4.1.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}, },
"jest-junit": { "jest-junit": {
"suiteName": "jest tests", "suiteName": "jest tests",

View File

@@ -0,0 +1,64 @@
using System;
using System.Threading;
using DotnetTests.Unit;
using NUnit.Framework;
namespace DotnetTests.XUnitTests
{
public class CalculatorTests
{
private readonly Calculator _calculator = new Calculator();
[Test]
public void Passing_Test()
{
Assert.That(_calculator.Sum(1, 1), Is.EqualTo(2));
}
[Test(Description = "Some description")]
public void Passing_Test_With_Description()
{
Assert.That(2, Is.EqualTo(2));
}
[Test]
public void Failing_Test()
{
Assert.That(_calculator.Sum(1, 1), Is.EqualTo(3));
}
[Test]
public void Exception_In_TargetTest()
{
_calculator.Div(1, 0);
}
[Test]
public void Exception_In_Test()
{
throw new Exception("Test");
}
[Test]
[Timeout(1)]
public void Timeout_Test()
{
Thread.Sleep(100);
}
[Test]
[Ignore("Skipped")]
public void Skipped_Test()
{
throw new Exception("Test");
}
[Theory]
[TestCase(2)]
[TestCase(3)]
public void Is_Even_Number(int i)
{
Assert.True(i % 2 == 0);
}
}
}

View File

@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DotnetTests.Unit\DotnetTests.Unit.csproj" />
</ItemGroup>
</Project>

View File

@@ -9,6 +9,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{BCAC3B31
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotnetTests.XUnitTests", "DotnetTests.XUnitTests\DotnetTests.XUnitTests.csproj", "{F8607EDB-D25D-47AA-8132-38ACA242E845}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotnetTests.XUnitTests", "DotnetTests.XUnitTests\DotnetTests.XUnitTests.csproj", "{F8607EDB-D25D-47AA-8132-38ACA242E845}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotnetTests.NUnitV3Tests", "DotnetTests.NUnitV3Tests\DotnetTests.NUnitV3Tests.csproj", "{81023ED7-56CB-47E9-86C5-9125A0873C55}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@@ -23,12 +25,17 @@ Global
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Debug|Any CPU.Build.0 = Debug|Any CPU {F8607EDB-D25D-47AA-8132-38ACA242E845}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Release|Any CPU.ActiveCfg = Release|Any CPU {F8607EDB-D25D-47AA-8132-38ACA242E845}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Release|Any CPU.Build.0 = Release|Any CPU {F8607EDB-D25D-47AA-8132-38ACA242E845}.Release|Any CPU.Build.0 = Release|Any CPU
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Debug|Any CPU.Build.0 = Debug|Any CPU
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Release|Any CPU.ActiveCfg = Release|Any CPU
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
EndGlobalSection EndGlobalSection
GlobalSection(NestedProjects) = preSolution GlobalSection(NestedProjects) = preSolution
{F8607EDB-D25D-47AA-8132-38ACA242E845} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C} {F8607EDB-D25D-47AA-8132-38ACA242E845} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C}
{81023ED7-56CB-47E9-86C5-9125A0873C55} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C}
EndGlobalSection EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6ED5543C-74AA-4B21-8050-943550F3F66E} SolutionGuid = {6ED5543C-74AA-4B21-8050-943550F3F66E}

View File

@@ -64,38 +64,24 @@
} }
} }
}, },
"@babel/helper-environment-visitor": { "@babel/helper-function-name": {
"version": "7.22.20", "version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
"integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
"dev": true
},
"@babel/helper-hoist-variables": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
"integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
"dev": true, "dev": true,
"requires": { "requires": {
"@babel/types": "^7.22.5" "@babel/helper-get-function-arity": "^7.10.4",
}, "@babel/template": "^7.10.4",
"dependencies": { "@babel/types": "^7.10.4"
"@babel/helper-validator-identifier": { }
"version": "7.22.20", },
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", "@babel/helper-get-function-arity": {
"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", "version": "7.10.4",
"dev": true "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
}, "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
"@babel/types": { "dev": true,
"version": "7.23.0", "requires": {
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", "@babel/types": "^7.10.4"
"integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
"dev": true,
"requires": {
"@babel/helper-string-parser": "^7.22.5",
"@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
}
}
} }
}, },
"@babel/helper-member-expression-to-functions": { "@babel/helper-member-expression-to-functions": {
@@ -178,12 +164,6 @@
"@babel/types": "^7.11.0" "@babel/types": "^7.11.0"
} }
}, },
"@babel/helper-string-parser": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
"integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
"dev": true
},
"@babel/helper-validator-identifier": { "@babel/helper-validator-identifier": {
"version": "7.10.4", "version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
@@ -381,159 +361,20 @@
} }
}, },
"@babel/traverse": { "@babel/traverse": {
"version": "7.23.2", "version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
"integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", "integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
"dev": true, "dev": true,
"requires": { "requires": {
"@babel/code-frame": "^7.22.13", "@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.23.0", "@babel/generator": "^7.12.1",
"@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.10.4",
"@babel/helper-function-name": "^7.23.0", "@babel/helper-split-export-declaration": "^7.11.0",
"@babel/helper-hoist-variables": "^7.22.5", "@babel/parser": "^7.12.1",
"@babel/helper-split-export-declaration": "^7.22.6", "@babel/types": "^7.12.1",
"@babel/parser": "^7.23.0",
"@babel/types": "^7.23.0",
"debug": "^4.1.0", "debug": "^4.1.0",
"globals": "^11.1.0" "globals": "^11.1.0",
}, "lodash": "^4.17.19"
"dependencies": {
"@babel/code-frame": {
"version": "7.22.13",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
"integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
"dev": true,
"requires": {
"@babel/highlight": "^7.22.13",
"chalk": "^2.4.2"
}
},
"@babel/generator": {
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz",
"integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
"dev": true,
"requires": {
"@babel/types": "^7.23.0",
"@jridgewell/gen-mapping": "^0.3.2",
"@jridgewell/trace-mapping": "^0.3.17",
"jsesc": "^2.5.1"
}
},
"@babel/helper-function-name": {
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
"integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
"dev": true,
"requires": {
"@babel/template": "^7.22.15",
"@babel/types": "^7.23.0"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.22.6",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
"integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
"dev": true,
"requires": {
"@babel/types": "^7.22.5"
}
},
"@babel/helper-validator-identifier": {
"version": "7.22.20",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
"dev": true
},
"@babel/highlight": {
"version": "7.22.20",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz",
"integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.22.20",
"chalk": "^2.4.2",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
"integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
"dev": true
},
"@babel/template": {
"version": "7.22.15",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.22.13",
"@babel/parser": "^7.22.15",
"@babel/types": "^7.22.15"
}
},
"@babel/types": {
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz",
"integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
"dev": true,
"requires": {
"@babel/helper-string-parser": "^7.22.5",
"@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
}
},
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
"dev": true
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"dev": true
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
"has-flag": "^3.0.0"
}
}
} }
}, },
"@babel/types": { "@babel/types": {
@@ -774,45 +615,6 @@
"chalk": "^4.0.0" "chalk": "^4.0.0"
} }
}, },
"@jridgewell/gen-mapping": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
"integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
"dev": true,
"requires": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
}
},
"@jridgewell/resolve-uri": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
"integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
"dev": true
},
"@jridgewell/set-array": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
"dev": true
},
"@jridgewell/sourcemap-codec": {
"version": "1.4.15",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
"dev": true
},
"@jridgewell/trace-mapping": {
"version": "0.3.19",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
"integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
"dev": true,
"requires": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"@sinonjs/commons": { "@sinonjs/commons": {
"version": "1.8.1", "version": "1.8.1",
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz",
@@ -1002,9 +804,9 @@
} }
}, },
"ansi-regex": { "ansi-regex": {
"version": "5.0.1", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
"dev": true "dev": true
}, },
"ansi-styles": { "ansi-styles": {
@@ -1541,9 +1343,9 @@
"dev": true "dev": true
}, },
"decode-uri-component": { "decode-uri-component": {
"version": "0.2.2", "version": "0.2.0",
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
"integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
"dev": true "dev": true
}, },
"deep-is": { "deep-is": {
@@ -2744,9 +2546,9 @@
}, },
"dependencies": { "dependencies": {
"ansi-regex": { "ansi-regex": {
"version": "4.1.1", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
"dev": true "dev": true
}, },
"strip-ansi": { "strip-ansi": {
@@ -3106,10 +2908,13 @@
"dev": true "dev": true
}, },
"json5": { "json5": {
"version": "2.2.3", "version": "2.1.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
"dev": true "dev": true,
"requires": {
"minimist": "^1.2.5"
}
}, },
"jsprim": { "jsprim": {
"version": "1.4.1", "version": "1.4.1",
@@ -3275,9 +3080,9 @@
} }
}, },
"minimist": { "minimist": {
"version": "1.2.8", "version": "1.2.5",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
"dev": true "dev": true
}, },
"mixin-deep": { "mixin-deep": {
@@ -3681,9 +3486,9 @@
"dev": true "dev": true
}, },
"qs": { "qs": {
"version": "6.5.3", "version": "6.5.2",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
"integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
"dev": true "dev": true
}, },
"react-is": { "react-is": {
@@ -4855,9 +4660,9 @@
} }
}, },
"ws": { "ws": {
"version": "7.5.9", "version": "7.3.1",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.1.tgz",
"integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", "integrity": "sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA==",
"dev": true "dev": true
}, },
"xml": { "xml": {

View File

@@ -17,9 +17,9 @@
"dev": true "dev": true
}, },
"ansi-regex": { "ansi-regex": {
"version": "3.0.1", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true "dev": true
}, },
"ansi-styles": { "ansi-styles": {
@@ -139,9 +139,9 @@
}, },
"dependencies": { "dependencies": {
"ansi-regex": { "ansi-regex": {
"version": "5.0.1", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
"dev": true "dev": true
}, },
"is-fullwidth-code-point": { "is-fullwidth-code-point": {
@@ -639,9 +639,9 @@
}, },
"dependencies": { "dependencies": {
"ansi-regex": { "ansi-regex": {
"version": "5.0.1", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
"dev": true "dev": true
}, },
"is-fullwidth-code-point": { "is-fullwidth-code-point": {
@@ -700,9 +700,9 @@
}, },
"dependencies": { "dependencies": {
"ansi-regex": { "ansi-regex": {
"version": "5.0.1", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
"dev": true "dev": true
}, },
"is-fullwidth-code-point": { "is-fullwidth-code-point": {

View File

@@ -50,7 +50,7 @@ export class ArtifactProvider implements InputProvider {
async load(): Promise<ReportInput> { async load(): Promise<ReportInput> {
const result: ReportInput = {} const result: ReportInput = {}
const resp = await this.octokit.rest.actions.listWorkflowRunArtifacts({ const resp = await this.octokit.actions.listWorkflowRunArtifacts({
...github.context.repo, ...github.context.repo,
run_id: this.runId run_id: this.runId
}) })

View File

@@ -4,10 +4,7 @@ import {FileContent, InputProvider, ReportInput} from './input-provider'
import {listFiles} from '../utils/git' import {listFiles} from '../utils/git'
export class LocalFileProvider implements InputProvider { export class LocalFileProvider implements InputProvider {
constructor( constructor(readonly name: string, readonly pattern: string[]) {}
readonly name: string,
readonly pattern: string[]
) {}
async load(): Promise<ReportInput> { async load(): Promise<ReportInput> {
const result: FileContent[] = [] const result: FileContent[] = []

View File

@@ -15,18 +15,17 @@ import {DotnetTrxParser} from './parsers/dotnet-trx/dotnet-trx-parser'
import {JavaJunitParser} from './parsers/java-junit/java-junit-parser' import {JavaJunitParser} from './parsers/java-junit/java-junit-parser'
import {JestJunitParser} from './parsers/jest-junit/jest-junit-parser' import {JestJunitParser} from './parsers/jest-junit/jest-junit-parser'
import {MochaJsonParser} from './parsers/mocha-json/mocha-json-parser' import {MochaJsonParser} from './parsers/mocha-json/mocha-json-parser'
import {SwiftXunitParser} from './parsers/swift-xunit/swift-xunit-parser'
import {normalizeDirPath, normalizeFilePath} from './utils/path-utils' import {normalizeDirPath, normalizeFilePath} from './utils/path-utils'
import {getCheckRunContext} from './utils/github-utils' import {getCheckRunContext} from './utils/github-utils'
import {Icon} from './utils/markdown-utils'
async function main(): Promise<void> { async function main(): Promise<void> {
try { try {
const testReporter = new TestReporter() const testReporter = new TestReporter()
await testReporter.run() await testReporter.run()
} catch (error) { } catch (error) {
if (error instanceof Error) core.setFailed(error) core.setFailed(error.message)
else core.setFailed(JSON.stringify(error))
} }
} }
@@ -40,7 +39,6 @@ class TestReporter {
readonly listTests = core.getInput('list-tests', {required: true}) as 'all' | 'failed' | 'none' readonly listTests = core.getInput('list-tests', {required: true}) as 'all' | 'failed' | 'none'
readonly maxAnnotations = parseInt(core.getInput('max-annotations', {required: true})) readonly maxAnnotations = parseInt(core.getInput('max-annotations', {required: true}))
readonly failOnError = core.getInput('fail-on-error', {required: true}) === 'true' readonly failOnError = core.getInput('fail-on-error', {required: true}) === 'true'
readonly failOnEmpty = core.getInput('fail-on-empty', {required: true}) === 'true'
readonly workDirInput = core.getInput('working-directory', {required: false}) readonly workDirInput = core.getInput('working-directory', {required: false})
readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true' readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true'
readonly token = core.getInput('token', {required: true}) readonly token = core.getInput('token', {required: true})
@@ -92,10 +90,10 @@ class TestReporter {
: new LocalFileProvider(this.name, pattern) : new LocalFileProvider(this.name, pattern)
const parseErrors = this.maxAnnotations > 0 const parseErrors = this.maxAnnotations > 0
const trackedFiles = parseErrors ? await inputProvider.listTrackedFiles() : [] const trackedFiles = await inputProvider.listTrackedFiles()
const workDir = this.artifact ? undefined : normalizeDirPath(process.cwd(), true) const workDir = this.artifact ? undefined : normalizeDirPath(process.cwd(), true)
if (parseErrors) core.info(`Found ${trackedFiles.length} files tracked by GitHub`) core.info(`Found ${trackedFiles.length} files tracked by GitHub`)
const options: ParseOptions = { const options: ParseOptions = {
workDir, workDir,
@@ -136,7 +134,7 @@ class TestReporter {
return return
} }
if (results.length === 0 && this.failOnEmpty) { if (results.length === 0) {
core.setFailed(`No test report files were found`) core.setFailed(`No test report files were found`)
return return
} }
@@ -148,20 +146,15 @@ class TestReporter {
return [] return []
} }
core.info(`Processing test results for check run ${name}`)
const results: TestRunResult[] = [] const results: TestRunResult[] = []
for (const {file, content} of files) { for (const {file, content} of files) {
try { core.info(`Processing test results from ${file}`)
const tr = await parser.parse(file, content) const tr = await parser.parse(file, content)
results.push(tr) results.push(tr)
} catch (error) {
core.error(`Processing test results from ${file} failed`)
throw error
}
} }
core.info(`Creating check run ${name}`) core.info(`Creating check run ${name}`)
const createResp = await this.octokit.rest.checks.create({ const createResp = await this.octokit.checks.create({
head_sha: this.context.sha, head_sha: this.context.sha,
name, name,
status: 'in_progress', status: 'in_progress',
@@ -174,27 +167,23 @@ class TestReporter {
core.info('Creating report summary') core.info('Creating report summary')
const {listSuites, listTests, onlySummary} = this const {listSuites, listTests, onlySummary} = this
const baseUrl = createResp.data.html_url as string const baseUrl = createResp.data.html_url
const summary = getReport(results, {listSuites, listTests, baseUrl, onlySummary}) const summary = getReport(results, {listSuites, listTests, baseUrl, onlySummary})
core.info('Creating annotations') core.info('Creating annotations')
const annotations = getAnnotations(results, this.maxAnnotations) const annotations = getAnnotations(results, this.maxAnnotations)
const isFailed = this.failOnError && results.some(tr => tr.result === 'failed') const isFailed = results.some(tr => tr.result === 'failed')
const conclusion = isFailed ? 'failure' : 'success' const conclusion = isFailed ? 'failure' : 'success'
const icon = isFailed ? Icon.fail : Icon.success
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
const shortSummary = `${passed} passed, ${failed} failed and ${skipped} skipped `
core.info(`Updating check run conclusion (${conclusion}) and output`) core.info(`Updating check run conclusion (${conclusion}) and output`)
const resp = await this.octokit.rest.checks.update({ const resp = await this.octokit.checks.update({
check_run_id: createResp.data.id, check_run_id: createResp.data.id,
conclusion, conclusion,
status: 'completed', status: 'completed',
output: { output: {
title: shortSummary, title: `${name} ${icon}`,
summary, summary,
annotations annotations
}, },
@@ -203,8 +192,6 @@ class TestReporter {
core.info(`Check run create response: ${resp.status}`) core.info(`Check run create response: ${resp.status}`)
core.info(`Check run URL: ${resp.data.url}`) core.info(`Check run URL: ${resp.data.url}`)
core.info(`Check run HTML: ${resp.data.html_url}`) core.info(`Check run HTML: ${resp.data.html_url}`)
core.setOutput('url', resp.data.url)
core.setOutput('url_html', resp.data.html_url)
return results return results
} }
@@ -223,8 +210,6 @@ class TestReporter {
return new JestJunitParser(options) return new JestJunitParser(options)
case 'mocha-json': case 'mocha-json':
return new MochaJsonParser(options) return new MochaJsonParser(options)
case 'swift-xunit':
return new SwiftXunitParser(options)
default: default:
throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}'`) throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}'`)
} }

View File

@@ -29,12 +29,7 @@ import {
} from '../../test-results' } from '../../test-results'
class TestRun { class TestRun {
constructor( constructor(readonly path: string, readonly suites: TestSuite[], readonly success: boolean, readonly time: number) {}
readonly path: string,
readonly suites: TestSuite[],
readonly success: boolean,
readonly time: number
) {}
} }
class TestSuite { class TestSuite {
@@ -79,10 +74,7 @@ class TestCase {
export class DartJsonParser implements TestParser { export class DartJsonParser implements TestParser {
assumedWorkDir: string | undefined assumedWorkDir: string | undefined
constructor( constructor(readonly options: ParseOptions, readonly sdk: 'dart' | 'flutter') {}
readonly options: ParseOptions,
readonly sdk: 'dart' | 'flutter'
) {}
async parse(path: string, content: string): Promise<TestRunResult> { async parse(path: string, content: string): Promise<TestRunResult> {
const tr = this.getTestRun(path, content) const tr = this.getTestRun(path, content)
@@ -100,8 +92,7 @@ export class DartJsonParser implements TestParser {
try { try {
return JSON.parse(str) return JSON.parse(str)
} catch (e) { } catch (e) {
const errWithCol = e as {columnNumber?: number} const col = e.columnNumber !== undefined ? `:${e.columnNumber}` : ''
const col = errWithCol.columnNumber !== undefined ? `:${errWithCol.columnNumber}` : ''
throw new Error(`Invalid JSON at ${path}:${i + 1}${col}\n\n${e}`) throw new Error(`Invalid JSON at ${path}:${i + 1}${col}\n\n${e}`)
} }
}) })
@@ -203,8 +194,7 @@ export class DartJsonParser implements TestParser {
private getErrorMessage(message: string, print: string): string { private getErrorMessage(message: string, print: string): string {
if (this.sdk === 'flutter') { if (this.sdk === 'flutter') {
const uselessMessageRe = /^Test failed\. See exception logs above\.\nThe test description was:/m const uselessMessageRe = /^Test failed\. See exception logs above\.\nThe test description was:/m
const flutterPrintRe = const flutterPrintRe = /^ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK +\s+(.*)\s+When the exception was thrown, this was the stack:/ms
/^ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK +\s+(.*)\s+When the exception was thrown, this was the stack:/ms
if (uselessMessageRe.test(message)) { if (uselessMessageRe.test(message)) {
const match = print.match(flutterPrintRe) const match = print.match(flutterPrintRe)
if (match !== null) { if (match !== null) {

View File

@@ -3,7 +3,6 @@ import {ParseOptions, TestParser} from '../../test-parser'
import {parseStringPromise} from 'xml2js' import {parseStringPromise} from 'xml2js'
import {JunitReport, SingleSuiteReport, TestCase, TestSuite} from './java-junit-types' import {JunitReport, SingleSuiteReport, TestCase, TestSuite} from './java-junit-types'
import {parseStackTraceElement} from './java-stack-trace-element-parser'
import {normalizeFilePath} from '../../utils/path-utils' import {normalizeFilePath} from '../../utils/path-utils'
import { import {
@@ -129,12 +128,10 @@ export class JavaJunitParser implements TestParser {
let filePath let filePath
let line let line
if (details != null) { const src = this.exceptionThrowSource(details)
const src = this.exceptionThrowSource(details) if (src) {
if (src) { filePath = src.filePath
filePath = src.filePath line = src.line
line = src.line
}
} }
return { return {
@@ -147,11 +144,12 @@ export class JavaJunitParser implements TestParser {
private exceptionThrowSource(stackTrace: string): {filePath: string; line: number} | undefined { private exceptionThrowSource(stackTrace: string): {filePath: string; line: number} | undefined {
const lines = stackTrace.split(/\r?\n/) const lines = stackTrace.split(/\r?\n/)
const re = /^at (.*)\((.*):(\d+)\)$/
for (const str of lines) { for (const str of lines) {
const stackTraceElement = parseStackTraceElement(str) const match = str.match(re)
if (stackTraceElement) { if (match !== null) {
const {tracePath, fileName, lineStr} = stackTraceElement const [_, tracePath, fileName, lineStr] = match
const filePath = this.getFilePath(tracePath, fileName) const filePath = this.getFilePath(tracePath, fileName)
if (filePath !== undefined) { if (filePath !== undefined) {
const line = parseInt(lineStr) const line = parseInt(lineStr)

View File

@@ -1,44 +0,0 @@
export interface StackTraceElement {
classLoader: string | undefined
moduleNameAndVersion: string | undefined
tracePath: string
fileName: string
lineStr: string
}
// classloader and module name are optional:
// at <CLASSLOADER>/<MODULE_NAME_AND_VERSION>/<FULLY_QUALIFIED_METHOD_NAME>(<FILE_NAME>:<LINE_NUMBER>)
// https://github.com/eclipse-openj9/openj9/issues/11452#issuecomment-754946992
const re = /^\s*at (\S+\/\S*\/)?(.*)\((.*):(\d+)\)$/
export function parseStackTraceElement(stackTraceLine: string): StackTraceElement | undefined {
const match = stackTraceLine.match(re)
if (match !== null) {
const [_, maybeClassLoaderAndModuleNameAndVersion, tracePath, fileName, lineStr] = match
const {classLoader, moduleNameAndVersion} = parseClassLoaderAndModule(maybeClassLoaderAndModuleNameAndVersion)
return {
classLoader,
moduleNameAndVersion,
tracePath,
fileName,
lineStr
}
}
return undefined
}
function parseClassLoaderAndModule(maybeClassLoaderAndModuleNameAndVersion?: string): {
classLoader?: string
moduleNameAndVersion?: string
} {
if (maybeClassLoaderAndModuleNameAndVersion) {
const res = maybeClassLoaderAndModuleNameAndVersion.split('/')
const classLoader = res[0]
let moduleNameAndVersion: string | undefined = res[1]
if (moduleNameAndVersion === '') {
moduleNameAndVersion = undefined
}
return {classLoader, moduleNameAndVersion}
}
return {classLoader: undefined, moduleNameAndVersion: undefined}
}

View File

@@ -37,7 +37,7 @@ export class JestJunitParser implements TestParser {
junit.testsuites.testsuite === undefined junit.testsuites.testsuite === undefined
? [] ? []
: junit.testsuites.testsuite.map(ts => { : junit.testsuites.testsuite.map(ts => {
const name = this.escapeCharacters(ts.$.name.trim()) const name = ts.$.name.trim()
const time = parseFloat(ts.$.time) * 1000 const time = parseFloat(ts.$.time) * 1000
const sr = new TestSuiteResult(name, this.getGroups(ts), time) const sr = new TestSuiteResult(name, this.getGroups(ts), time)
return sr return sr
@@ -48,10 +48,6 @@ export class JestJunitParser implements TestParser {
} }
private getGroups(suite: TestSuite): TestGroupResult[] { private getGroups(suite: TestSuite): TestGroupResult[] {
if (!suite.testcase) {
return []
}
const groups: {describe: string; tests: TestCase[]}[] = [] const groups: {describe: string; tests: TestCase[]}[] = []
for (const tc of suite.testcase) { for (const tc of suite.testcase) {
let grp = groups.find(g => g.describe === tc.$.classname) let grp = groups.find(g => g.describe === tc.$.classname)
@@ -118,8 +114,4 @@ export class JestJunitParser implements TestParser {
(this.assumedWorkDir = getBasePath(path, this.options.trackedFiles)) (this.assumedWorkDir = getBasePath(path, this.options.trackedFiles))
) )
} }
private escapeCharacters(s: string): string {
return s.replace(/([<>])/g, '\\$1')
}
} }

View File

@@ -19,7 +19,7 @@ export interface TestSuite {
time: string time: string
timestamp?: Date timestamp?: Date
} }
testcase?: TestCase[] testcase: TestCase[]
} }
export interface TestCase { export interface TestCase {

View File

@@ -1,8 +0,0 @@
import {ParseOptions} from '../../test-parser'
import {JavaJunitParser} from '../java-junit/java-junit-parser'
export class SwiftXunitParser extends JavaJunitParser {
constructor(readonly options: ParseOptions) {
super(options)
}
}

View File

@@ -1,7 +1,6 @@
import * as core from '@actions/core' import * as core from '@actions/core'
import {TestExecutionResult, TestRunResult, TestSuiteResult} from '../test-results' import {TestExecutionResult, TestRunResult, TestSuiteResult} from '../test-results'
import {Align, formatTime, Icon, link, table} from '../utils/markdown-utils' import {Align, formatTime, Icon, link, table} from '../utils/markdown-utils'
import {DEFAULT_LOCALE} from '../utils/node-utils'
import {getFirstNonEmptyLine} from '../utils/parse-utils' import {getFirstNonEmptyLine} from '../utils/parse-utils'
import {slug} from '../utils/slugger' import {slug} from '../utils/slugger'
@@ -80,9 +79,9 @@ function trimReport(lines: string[]): string {
} }
function applySort(results: TestRunResult[]): void { function applySort(results: TestRunResult[]): void {
results.sort((a, b) => a.path.localeCompare(b.path, DEFAULT_LOCALE)) results.sort((a, b) => a.path.localeCompare(b.path))
for (const res of results) { for (const res of results) {
res.suites.sort((a, b) => a.name.localeCompare(b.name, DEFAULT_LOCALE)) res.suites.sort((a, b) => a.name.localeCompare(b.name))
} }
} }

View File

@@ -1,11 +1,5 @@
import {DEFAULT_LOCALE} from './utils/node-utils'
export class TestRunResult { export class TestRunResult {
constructor( constructor(readonly path: string, readonly suites: TestSuiteResult[], private totalTime?: number) {}
readonly path: string,
readonly suites: TestSuiteResult[],
private totalTime?: number
) {}
get tests(): number { get tests(): number {
return this.suites.reduce((sum, g) => sum + g.tests, 0) return this.suites.reduce((sum, g) => sum + g.tests, 0)
@@ -34,7 +28,7 @@ export class TestRunResult {
} }
sort(deep: boolean): void { sort(deep: boolean): void {
this.suites.sort((a, b) => a.name.localeCompare(b.name, DEFAULT_LOCALE)) this.suites.sort((a, b) => a.name.localeCompare(b.name))
if (deep) { if (deep) {
for (const suite of this.suites) { for (const suite of this.suites) {
suite.sort(deep) suite.sort(deep)
@@ -44,11 +38,7 @@ export class TestRunResult {
} }
export class TestSuiteResult { export class TestSuiteResult {
constructor( constructor(readonly name: string, readonly groups: TestGroupResult[], private totalTime?: number) {}
readonly name: string,
readonly groups: TestGroupResult[],
private totalTime?: number
) {}
get tests(): number { get tests(): number {
return this.groups.reduce((sum, g) => sum + g.tests.length, 0) return this.groups.reduce((sum, g) => sum + g.tests.length, 0)
@@ -76,7 +66,7 @@ export class TestSuiteResult {
} }
sort(deep: boolean): void { sort(deep: boolean): void {
this.groups.sort((a, b) => (a.name ?? '').localeCompare(b.name ?? '', DEFAULT_LOCALE)) this.groups.sort((a, b) => (a.name ?? '').localeCompare(b.name ?? ''))
if (deep) { if (deep) {
for (const grp of this.groups) { for (const grp of this.groups) {
grp.sort() grp.sort()
@@ -86,10 +76,7 @@ export class TestSuiteResult {
} }
export class TestGroupResult { export class TestGroupResult {
constructor( constructor(readonly name: string | undefined | null, readonly tests: TestCaseResult[]) {}
readonly name: string | undefined | null,
readonly tests: TestCaseResult[]
) {}
get passed(): number { get passed(): number {
return this.tests.reduce((sum, t) => (t.result === 'success' ? sum + 1 : sum), 0) return this.tests.reduce((sum, t) => (t.result === 'success' ? sum + 1 : sum), 0)
@@ -113,7 +100,7 @@ export class TestGroupResult {
} }
sort(): void { sort(): void {
this.tests.sort((a, b) => a.name.localeCompare(b.name, DEFAULT_LOCALE)) this.tests.sort((a, b) => a.name.localeCompare(b.name))
} }
} }

21
src/utils/exec.ts Normal file
View File

@@ -0,0 +1,21 @@
import {exec as execImpl, ExecOptions} from '@actions/exec'
// Wraps original exec() function
// Returns exit code and whole stdout/stderr
export default async function exec(commandLine: string, args?: string[], options?: ExecOptions): Promise<ExecResult> {
options = options || {}
let stdout = ''
let stderr = ''
options.listeners = {
stdout: (data: Buffer) => (stdout += data.toString()),
stderr: (data: Buffer) => (stderr += data.toString())
}
const code = await execImpl(commandLine, args, options)
return {code, stdout, stderr}
}
export interface ExecResult {
code: number
stdout: string
stderr: string
}

View File

@@ -1,11 +1,11 @@
import * as core from '@actions/core' import * as core from '@actions/core'
import {getExecOutput} from '@actions/exec' import exec from './exec'
export async function listFiles(): Promise<string[]> { export async function listFiles(): Promise<string[]> {
core.startGroup('Listing all files tracked by git') core.startGroup('Listing all files tracked by git')
let output = '' let output = ''
try { try {
output = (await getExecOutput('git', ['ls-files', '-z'])).stdout output = (await exec('git', ['ls-files', '-z'])).stdout
} finally { } finally {
fixStdOutNullTermination() fixStdOutNullTermination()
core.endGroup() core.endGroup()

View File

@@ -2,7 +2,7 @@ import {createWriteStream} from 'fs'
import * as core from '@actions/core' import * as core from '@actions/core'
import * as github from '@actions/github' import * as github from '@actions/github'
import {GitHub} from '@actions/github/lib/utils' import {GitHub} from '@actions/github/lib/utils'
import type {PullRequest} from '@octokit/webhooks-types' import {EventPayloads} from '@octokit/webhooks'
import * as stream from 'stream' import * as stream from 'stream'
import {promisify} from 'util' import {promisify} from 'util'
import got from 'got' import got from 'got'
@@ -11,7 +11,7 @@ const asyncStream = promisify(stream.pipeline)
export function getCheckRunContext(): {sha: string; runId: number} { export function getCheckRunContext(): {sha: string; runId: number} {
if (github.context.eventName === 'workflow_run') { if (github.context.eventName === 'workflow_run') {
core.info('Action was triggered by workflow_run: using SHA and RUN_ID from triggering workflow') core.info('Action was triggered by workflow_run: using SHA and RUN_ID from triggering workflow')
const event = github.context.payload const event = github.context.payload as EventPayloads.WebhookPayloadWorkflowRun
if (!event.workflow_run) { if (!event.workflow_run) {
throw new Error("Event of type 'workflow_run' is missing 'workflow_run' field") throw new Error("Event of type 'workflow_run' is missing 'workflow_run' field")
} }
@@ -24,7 +24,7 @@ export function getCheckRunContext(): {sha: string; runId: number} {
const runId = github.context.runId const runId = github.context.runId
if (github.context.payload.pull_request) { if (github.context.payload.pull_request) {
core.info(`Action was triggered by ${github.context.eventName}: using SHA from head of source branch`) core.info(`Action was triggered by ${github.context.eventName}: using SHA from head of source branch`)
const pr = github.context.payload.pull_request as PullRequest const pr = github.context.payload.pull_request as EventPayloads.WebhookPayloadPullRequestPullRequest
return {sha: pr.head.sha, runId} return {sha: pr.head.sha, runId}
} }
@@ -41,7 +41,7 @@ export async function downloadArtifact(
try { try {
core.info(`Artifact ID: ${artifactId}`) core.info(`Artifact ID: ${artifactId}`)
const req = octokit.rest.actions.downloadArtifact.endpoint({ const req = octokit.actions.downloadArtifact.endpoint({
...github.context.repo, ...github.context.repo,
artifact_id: artifactId, artifact_id: artifactId,
archive_format: 'zip' archive_format: 'zip'
@@ -86,7 +86,7 @@ export async function downloadArtifact(
export async function listFiles(octokit: InstanceType<typeof GitHub>, sha: string): Promise<string[]> { export async function listFiles(octokit: InstanceType<typeof GitHub>, sha: string): Promise<string[]> {
core.startGroup('Fetching list of tracked files from GitHub') core.startGroup('Fetching list of tracked files from GitHub')
try { try {
const commit = await octokit.rest.git.getCommit({ const commit = await octokit.git.getCommit({
commit_sha: sha, commit_sha: sha,
...github.context.repo ...github.context.repo
}) })
@@ -101,7 +101,7 @@ async function listGitTree(octokit: InstanceType<typeof GitHub>, sha: string, pa
const pathLog = path ? ` at ${path}` : '' const pathLog = path ? ` at ${path}` : ''
core.info(`Fetching tree ${sha}${pathLog}`) core.info(`Fetching tree ${sha}${pathLog}`)
let truncated = false let truncated = false
let tree = await octokit.rest.git.getTree({ let tree = await octokit.git.getTree({
recursive: 'true', recursive: 'true',
tree_sha: sha, tree_sha: sha,
...github.context.repo ...github.context.repo
@@ -109,7 +109,7 @@ async function listGitTree(octokit: InstanceType<typeof GitHub>, sha: string, pa
if (tree.data.truncated) { if (tree.data.truncated) {
truncated = true truncated = true
tree = await octokit.rest.git.getTree({ tree = await octokit.git.getTree({
tree_sha: sha, tree_sha: sha,
...github.context.repo ...github.context.repo
}) })
@@ -121,7 +121,7 @@ async function listGitTree(octokit: InstanceType<typeof GitHub>, sha: string, pa
if (tr.type === 'blob') { if (tr.type === 'blob') {
result.push(file) result.push(file)
} else if (tr.type === 'tree' && truncated) { } else if (tr.type === 'tree' && truncated) {
const files = await listGitTree(octokit, tr.sha as string, `${file}/`) const files = await listGitTree(octokit, tr.sha, `${file}/`)
result.push(...files) result.push(...files)
} }
} }

View File

@@ -6,8 +6,8 @@ export enum Align {
} }
export const Icon = { export const Icon = {
skip: '', // ':white_circle:' skip: '✖️', // ':heavy_multiplication_x:'
success: '', // ':white_check_mark:' success: '✔️', // ':heavy_check_mark:'
fail: '❌' // ':x:' fail: '❌' // ':x:'
} }

View File

@@ -1,7 +1,5 @@
import {normalizeFilePath} from './path-utils' import {normalizeFilePath} from './path-utils'
export const DEFAULT_LOCALE = 'en-US'
export function getExceptionSource( export function getExceptionSource(
stackTrace: string, stackTrace: string,
trackedFiles: string[], trackedFiles: string[],

View File

@@ -19,6 +19,6 @@ export function parseIsoDate(str: string): Date {
} }
export function getFirstNonEmptyLine(stackTrace: string): string | undefined { export function getFirstNonEmptyLine(stackTrace: string): string | undefined {
const lines = stackTrace?.split(/\r?\n/g) const lines = stackTrace.split(/\r?\n/g)
return lines?.find(str => !/^\s*$/.test(str)) return lines.find(str => !/^\s*$/.test(str))
} }

View File

@@ -1,6 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "target": "ES2019", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"lib": ["ES2019"],
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"outDir": "./lib", /* Redirect output structure to the directory. */ "outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */