(params: PartialExecParameters, nameOrId: string)
| 65 | }); |
| 66 | |
| 67 | async function testRemoveContainer(params: PartialExecParameters, nameOrId: string) { |
| 68 | await removeContainer(params, nameOrId); |
| 69 | const all = await listContainers(params, true); |
| 70 | if (all.some(shortId => nameOrId.startsWith(shortId))) { |
| 71 | throw new Error('container still exists'); |
| 72 | } |
| 73 | } |
no test coverage detected