Multiple scenario with single file

You can split your tests into different JS files, and each of those can export relevant options and functions to run just that single test. Then you can have other files that import these single files and re-export some of their functions and export options.scenarios so that multiple tests run concurrently. And you can have environment variables in some of these files to toggle certain sub-scripts on and off. Here are some links to get you started:

1 Like