Skip to content

Commit 846a88c

Browse files
authored
Fix tests failing after buildx optimization (#777)
1 parent 10b0ec5 commit 846a88c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/cli.build.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ describe('Dev Containers CLI', function () {
223223
try {
224224
await shellExec(`docker buildx create --name ${builderName} --driver docker-container --use`);
225225

226-
const testFolder = `${__dirname}/configs/dockerfile-without-features`;
226+
const testFolder = `${__dirname}/configs/dockerfile-with-features`;
227227
const outputPath = `${os.tmpdir()}/test-build-cache`;
228228
const res = await shellExec(`${cli} build --workspace-folder ${testFolder} --log-level trace --cache-to=type=local,dest=${outputPath}`);
229229
console.log(res.stdout);
@@ -240,7 +240,7 @@ describe('Dev Containers CLI', function () {
240240
try {
241241
await shellExec(`docker buildx create --name ${builderName} --driver docker-container --use`);
242242

243-
const testFolder = `${__dirname}/configs/image`;
243+
const testFolder = `${__dirname}/configs/image-with-features`;
244244
const outputPath = `${os.tmpdir()}/test-build-cache-image`;
245245
const res = await shellExec(`${cli} build --workspace-folder ${testFolder} --log-level trace --cache-to=type=local,dest=${outputPath}`);
246246
console.log(res.stdout);

0 commit comments

Comments
 (0)