()
| 4 | const launcher = new Launcher(class="st">"./wdio.conf.js"); |
| 5 | |
| 6 | async function run() { |
| 7 | const server = createServer(); |
| 8 | |
| 9 | try { |
| 10 | const exitCode = await launcher.run(); |
| 11 | server.close(); |
| 12 | process.exit(exitCode); |
| 13 | } catch (e) { |
| 14 | console.error(class="st">"Launcher failed to start the test", e.stacktrace); |
| 15 | process.exit(1); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | run(); |
no test coverage detected