(config, grep)
| 10 | const codecept_dir = path.join(__dirname, '../acceptance') |
| 11 | const codecept_run = `${runner} run` |
| 12 | const config_run_config = (config, grep) => `${codecept_run} --config ${codecept_dir}/${config} ${grep ? `--grep "${grep}"` : ''}` |
| 13 | |
| 14 | describe('CodeceptJS plugin', function () { |
| 15 | this.timeout(60000) |