Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix problematic retransmission of authentication token (alternative solution) #438

Merged
merged 1 commit into from
May 8, 2024

Fix problematic retransmission of authentication token

f763877
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Fix problematic retransmission of authentication token (alternative solution) #438

Fix problematic retransmission of authentication token
f763877
Select commit
Loading
Failed to load commit list.
GitHub Actions / Workflow Report succeeded May 4, 2024 in 1s

36 passed, 0 failed and 0 skipped

Tests passed successfully

✅ jest-junit.xml

36 tests were completed in 7s with 36 passed, 0 failed and 0 skipped.

Test suite Passed Failed Skipped Time
tests/dart-json.test.ts 3✅ 656ms
tests/dotnet-trx.test.ts 4✅ 6s
tests/java-junit.test.ts 4✅ 5s
tests/java-stack-trace-element-parser.test.ts 7✅ 557ms
tests/jest-junit.test.ts 5✅ 5s
tests/mocha-json.test.ts 3✅ 661ms
tests/rspec-json.test.ts 2✅ 621ms
tests/swift-xunit.test.ts 1✅ 397ms
tests/utils/parse-utils.test.ts 7✅ 331ms

✅ tests/dart-json.test.ts

dart-json tests
  ✅ produces empty test run result when there are no test cases
  ✅ matches report snapshot
  ✅ report from rrousselGit/provider test results matches snapshot

✅ tests/dotnet-trx.test.ts

dotnet-trx tests
  ✅ produces empty test run result when there are no test cases
  ✅ matches report snapshot
  ✅ report from FluentValidation test results matches snapshot
  ✅ report from SilentNotes test results matches snapshot

✅ tests/java-junit.test.ts

java-junit tests
  ✅ produces empty test run result when there are no test cases
  ✅ report from apache/pulsar single suite test results matches snapshot
  ✅ report from apache/pulsar test results matches snapshot
  ✅ parses empty failures in test results

✅ tests/java-stack-trace-element-parser.test.ts

parseStackTraceLine tests
  ✅ empty line is not parsed
parseStackTraceLine tests › java class
  ✅ simple
  ✅ inner class
  ✅ starts with whitespaces
parseStackTraceLine tests › java class › since Java 9
  ✅ with classloader and module
  ✅ with classloader
parseStackTraceLine tests › Kotlin class
  ✅ method name containing whitespaces

✅ tests/jest-junit.test.ts

jest-junit tests
  ✅ produces empty test run result when there are no test cases in the testsuites element
  ✅ produces empty test run result when there are no test cases in a nested testsuite element
  ✅ report from ./reports/jest test results matches snapshot
  ✅ report from facebook/jest test results matches snapshot
  ✅ report from #235 testing react components named <ComponentName />

✅ tests/mocha-json.test.ts

mocha-json tests
  ✅ produces empty test run result when there are no test cases
  ✅ report from ./reports/mocha-json test results matches snapshot
  ✅ report from mochajs/mocha test results matches snapshot

✅ tests/rspec-json.test.ts

rspec-json tests
  ✅ produces empty test run result when there are no test cases
  ✅ report from ./reports/rspec-json test results matches snapshot

✅ tests/swift-xunit.test.ts

swift-xunit tests
  ✅ report from swift test results matches snapshot

✅ tests/utils/parse-utils.test.ts

parseNetDuration
  ✅ returns 0 for 00:00:00
  ✅ returns 0 for 00:00:00.0000000
  ✅ returns 123 for 00:00:00.123
  ✅ returns 12 * 1000 for 00:00:12
  ✅ returns 12 * 60 * 1000 for 00:12:00
  ✅ returns 12 * 60 * 60 * 1000 for 12:00:00
  ✅ throws when string has invalid format