Skip to content

Commit fdc88d5

Browse files
Merge master into feature/inline-rollback
2 parents f4d02d1 + d7bbf39 commit fdc88d5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/core/src/test/awsService/appBuilder/walkthrough.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)