(runtime: Runtime, command: string, timeout = 30)
| 46 | |
| 47 | const SSH_TEST_CWD = "/home/testuser"; |
| 48 | const execSSH = (runtime: Runtime, command: string, timeout = 30) => |
| 49 | execBuffered(runtime, command, { cwd: SSH_TEST_CWD, timeout }); |
| 50 | |
| 51 | // Skip all tests if TEST_INTEGRATION is not set |
| 52 | const describeIntegration = shouldRunIntegrationTests() ? describe : describe.skip; |
no test coverage detected