* Entry point for the `amp integration` task. * @return {Promise }
()
| 29 | * @return {Promise<void>} |
| 30 | */ |
| 31 | async function integration() { |
| 32 | maybePrintArgvMessages(); |
| 33 | |
| 34 | const config = new RuntimeTestConfig('integration'); |
| 35 | const runner = new Runner(config); |
| 36 | |
| 37 | await runner.setup(); |
| 38 | await runner.run(); |
| 39 | await runner.teardown(); |
| 40 | } |
| 41 | |
| 42 | module.exports = { |
| 43 | integration, |
nothing calls this directly
no test coverage detected