Suite definition that supports the new syntax to group specs files
See original GitHub issueI would be very interested if the new feature (gouping specs for execution in a single instance) would be supported on Suite definition like :
"suites":
{
setup:[
[
"./test/specs/setup/test_login.js",
"./test/specs/setup/test_product_order.js",
"./test/specs/setup/test_checkout.js"
],
"./test/specs/setup/test_b*.js",
],
login:[
[
"./test/specs/login/test_login.js",
"./test/specs/login/test_product_order.js",
"./test/specs/login/test_checkout.js"
],
"./test/specs/login/test_b*.js",
],
}
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Organizing Test Suite - WebdriverIO
You can group test specs in suites and run single specific suites instead of all of them. First, define your suites in your...
Read more >How to group test cases in TestNG [with Examples]
In this tutorial, you will learn how to group test cases in TestNG along with the demonstration with relevant TestNG group examples.
Read more >Create test plans and test suites - Azure - Microsoft Learn
Testers continue testing until the product meets exit criteria. For the next development cycle and release, you can create a new test plan...
Read more >5 Writing Test Suites - Erlang/OTP
A test suite is an ordinary Erlang module that contains test cases. ... The described syntax can also be used in test specifications...
Read more >Test cases and test suites - IBM
A test case answers the question: "What am I going to test?" You develop test cases to define the things that you must...
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 Free
Top 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
I’m happy to take a look at this if you’d like
Thanks a lot!!