@@ -53,7 +53,7 @@ describe('Dev Containers CLI', function () {
5353 await shellExec ( `${ cli } build --workspace-folder ${ testFolder } --image-name demo:v1` ) ;
5454 const tags = await shellExec ( `docker images --format "{{.Tag}}" demo` ) ;
5555 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' ) ;
5757 } catch ( error ) {
5858 assert . equal ( error . code , 'ERR_ASSERTION' , 'Should fail with ERR_ASSERTION' ) ;
5959 }
@@ -424,7 +424,7 @@ describe('Dev Containers CLI', function () {
424424 assert . strictEqual ( envListToObj ( details . Config . Env ) . SUBFOLDER_CONFIG_IMAGE_ENV , 'true' ) ;
425425 } ) ;
426426
427- it . only ( 'should apply build options' , async ( ) => {
427+ it 'should apply build options' , async ( ) => {
428428 const testFolder = `${ __dirname } /configs/dockerfile-with-target` ;
429429 const res = await shellExec ( `${ cli } build --workspace-folder ${ testFolder } ` ) ;
430430 const response = JSON . parse ( res . stdout ) ;
@@ -434,7 +434,7 @@ describe('Dev Containers CLI', function () {
434434 assert . strictEqual ( details . Config . Labels ?. test_build_options , 'success' ) ;
435435 } ) ;
436436
437- it . only ( 'should build with default workspace folder' , async ( ) => {
437+ it 'should build with default workspace folder' , async ( ) => {
438438 const testFolder = `${ __dirname } /configs/dockerfile-with-target` ;
439439 const res = await shellExec ( `${ cli } build` , { cwd : testFolder } ) ;
440440 const response = JSON . parse ( res . stdout ) ;
0 commit comments