Skip to content

Commit 8c67184

Browse files
Merge master into feature/hybridChat-local
2 parents 90a4d90 + d7bbf39 commit 8c67184

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)