Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -223,12 +223,15 @@ describe('AppBuilder Walkthrough', function () {
assert.notEqual(await fs.readFileText(vscode.Uri.joinPath(workspaceUri, 'template.yaml')), prevInfo)
})

it.skip('download serverlessland proj', async function () {
it('download serverlessland proj', async function () {
const config = vscode.workspace.getConfiguration('aws.samcli')
await config.update('enableCodeLenses', false, vscode.ConfigurationTarget.Global)
// When
await genWalkthroughProject('API', workspaceUri, 'python')
// Then template should be overwritten
assert.equal(await fs.exists(vscode.Uri.joinPath(workspaceUri, 'template.yaml')), true)
assert.notEqual(await fs.readFileText(vscode.Uri.joinPath(workspaceUri, 'template.yaml')), prevInfo)
await config.update('enableCodeLenses', true, vscode.ConfigurationTarget.Global)
})
})

Expand Down
Loading