File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
packages/core/src/test/awsService/appBuilder Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -223,12 +223,15 @@ describe('AppBuilder Walkthrough', function () {
223223 assert . notEqual ( await fs . readFileText ( vscode . Uri . joinPath ( workspaceUri , 'template.yaml' ) ) , prevInfo )
224224 } )
225225
226- it . skip ( 'download serverlessland proj' , async function ( ) {
226+ it ( 'download serverlessland proj' , async function ( ) {
227+ const config = vscode . workspace . getConfiguration ( 'aws.samcli' )
228+ await config . update ( 'enableCodeLenses' , false , vscode . ConfigurationTarget . Global )
227229 // When
228230 await genWalkthroughProject ( 'API' , workspaceUri , 'python' )
229231 // Then template should be overwritten
230232 assert . equal ( await fs . exists ( vscode . Uri . joinPath ( workspaceUri , 'template.yaml' ) ) , true )
231233 assert . notEqual ( await fs . readFileText ( vscode . Uri . joinPath ( workspaceUri , 'template.yaml' ) ) , prevInfo )
234+ await config . update ( 'enableCodeLenses' , true , vscode . ConfigurationTarget . Global )
232235 } )
233236 } )
234237
You can’t perform that action at this time.
0 commit comments