Skip to content
Merged
Changes from 4 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,9 +223,11 @@ 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 () {
// When
await genWalkthroughProject('API', workspaceUri, 'python')
const genPromise = genWalkthroughProject('API', workspaceUri, 'python')
await getTestWindow().waitForMessage(/template.yaml already exist/)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test times out, is it unable to find this?

Copy link
Contributor Author

@seshubaws seshubaws Oct 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probably the "scanning cloudformation template" warning shows up before the confirm overwrite popup, still working on it. I'm not able to repro the error in my local

await genPromise
// 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)
Expand Down
Loading