We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdc638d commit 6e43617Copy full SHA for 6e43617
src/test/cli.build.test.ts
@@ -50,7 +50,7 @@ describe('Dev Containers CLI', function () {
50
it('should correctly configure the image name to push from --image-name with --push true', async () => {
51
const testFolder = `${__dirname}/configs/example`;
52
try {
53
- await shellExec(`${cli} build --workspace-folder ${testFolder} --image-name demo:v1 --label "name=prathamesh"`);
+ await shellExec(`${cli} build --workspace-folder ${testFolder} --image-name demo:v1`);
54
const tags = await shellExec(`docker images --format "{{.Tag}}" demo`);
55
const imageTags = tags.stdout.trim().split('\n').filter(tag => tag !== '<none>');
56
assert.equal(imageTags.length, 1, 'There should be only one tag for demo:v1');
0 commit comments