()
| 226 | const workspaceFolder = path.join(__dirname, 'configs/lockfile-generate-from-empty-file'); |
| 227 | const lockfilePath = path.join(workspaceFolder, '.devcontainer', 'devcontainer-lock.json'); |
| 228 | const cleanup = async () => { |
| 229 | await rmLocal(lockfilePath, { force: true }); |
| 230 | await shellExec(`touch ${lockfilePath}`); |
| 231 | }; |
| 232 | |
| 233 | await cleanup(); |
| 234 | const res = await shellExec(`${cli} build --workspace-folder ${workspaceFolder}`); |
no test coverage detected