@@ -53,7 +53,7 @@ describe('Dev Containers CLI', function () {
53
53
await shellExec ( `${ cli } build --workspace-folder ${ testFolder } --image-name demo:v1` ) ;
54
54
const tags = await shellExec ( `docker images --format "{{.Tag}}" demo` ) ;
55
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' ) ;
56
+ assert . equal ( imageTags . length , 1 , 'There should be only one tag for demo:v1' ) ;
57
57
} catch ( error ) {
58
58
assert . equal ( error . code , 'ERR_ASSERTION' , 'Should fail with ERR_ASSERTION' ) ;
59
59
}
@@ -424,7 +424,7 @@ describe('Dev Containers CLI', function () {
424
424
assert . strictEqual ( envListToObj ( details . Config . Env ) . SUBFOLDER_CONFIG_IMAGE_ENV , 'true' ) ;
425
425
} ) ;
426
426
427
- it . only ( 'should apply build options' , async ( ) => {
427
+ it 'should apply build options' , async ( ) => {
428
428
const testFolder = `${ __dirname } /configs/dockerfile-with-target` ;
429
429
const res = await shellExec ( `${ cli } build --workspace-folder ${ testFolder } ` ) ;
430
430
const response = JSON . parse ( res . stdout ) ;
@@ -434,7 +434,7 @@ describe('Dev Containers CLI', function () {
434
434
assert . strictEqual ( details . Config . Labels ?. test_build_options , 'success' ) ;
435
435
} ) ;
436
436
437
- it . only ( 'should build with default workspace folder' , async ( ) => {
437
+ it 'should build with default workspace folder' , async ( ) => {
438
438
const testFolder = `${ __dirname } /configs/dockerfile-with-target` ;
439
439
const res = await shellExec ( `${ cli } build` , { cwd : testFolder } ) ;
440
440
const response = JSON . parse ( res . stdout ) ;
0 commit comments