({ jestEnvironment = 'jsdom', env = {} } = {})
| 82 | } |
| 83 | |
| 84 | async test({ jestEnvironment = 'jsdom', env = {} } = {}) { |
| 85 | return await execaSafe('npm', ['test', '--env', jestEnvironment, '--ci'], { |
| 86 | cwd: this.root, |
| 87 | env: Object.assign({}, { CI: 'true' }, env), |
| 88 | }); |
| 89 | } |
| 90 | }; |
no test coverage detected