Fail fast for a container test
See original GitHub issuecontext("a context").config(failfast = true) {
test("test 1") {
}
test("test 2") {
// this test is skipped if test 1 fails
}
}
Issue Analytics
- State:
- Created 2 years ago
- Comments:18 (12 by maintainers)
Top Results From Across the Web
Fail Fast Testing - GitLab Docs
Fail fast testing gives you a faster feedback loop from the pipeline. It lets you know quickly that the new tests are passing...
Read more >Fail-Fast: Stop running tests on the first failure
On Semaphore, a fail-fast strategy means that you get instant feedback when a job fails. All the jobs running in a pipeline can...
Read more >The Fail-fast Principle in Software Testing - HackerNoon
The fail-fast principle makes software bugs easier to detect earlier in the development cycle. It allows for faster strengthening of the code ...
Read more >Fail fast: stop running tests on first failure - CircleCI Discuss
CircleCI doc states that: all test commands are run to completion, but a non-zero exit code during setup will cause the build to...
Read more >How to Fail Fast With Test Intelligence in CI - Harness
3:53 - Here, Shiv highlights the importance of testing by showing multiple examples of outages/downtime at large companies (think: FAANG large).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ah I see.
Freespec doesn’t support config on parent tests because the DSL doesn’t quite work. Let me see if I can support that and then add fail fast support.
Created issue to track this https://github.com/kotest/kotest/issues/2773