File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ describe('Dev Containers CLI', function () {
2626
2727 describe ( 'Command up' , ( ) => {
2828
29- it . only ( 'should execute successfully with valid config' , async ( ) => {
29+ it ( 'should execute successfully with valid config' , async ( ) => {
3030 const res = await shellExec ( `${ cli } up --workspace-folder ${ __dirname } /configs/image --include-configuration --include-merged-configuration` ) ;
3131 const response = JSON . parse ( res . stdout ) ;
3232 assert . equal ( response . outcome , 'success' ) ;
@@ -69,7 +69,7 @@ describe('Dev Containers CLI', function () {
6969 assert . equal ( success , false , 'expect non-successful call' ) ;
7070 } ) ;
7171
72- it . only ( 'should succeed when run without a workspace-folder in a workspace root' , async ( ) => {
72+ it ( 'should succeed when run without a workspace-folder in a workspace root' , async ( ) => {
7373 const res = await shellExec ( `${ cli } up` , { cwd : `${ __dirname } /configs/image-with-features` } ) ;
7474 const response = JSON . parse ( res . stdout ) ;
7575 assert . equal ( response . outcome , 'success' ) ;
You can’t perform that action at this time.
0 commit comments