Skip to content

Commit 9c161df

Browse files
authored
fix(tests): amazon q featureDev e2e test prompts #4646
Problem The current e2e prompts cause false positive rejections and other internal quality issues which we are working on resolving. Solution The new prompts are more stable. It used to always fail now it passed twice in a row.
1 parent bb71d9d commit 9c161df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/src/testE2E/amazonq/featureDev.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ describe('Amazon Q Feature Dev', function () {
2020
let tab: Messenger
2121

2222
const maxTestDuration = 600000
23-
const prompt = 'Implement fibonacci in typescript'
24-
const iterateApproachPrompt = prompt + ' and add tests'
25-
const codegenApproachPrompt = prompt + ' and add even more tests'
23+
const prompt = 'Implement fibonacci in python'
24+
const iterateApproachPrompt = prompt + ' and add a unit test'
25+
const codegenApproachPrompt = prompt + ' and add a readme that describes the changes'
2626
const tooManyRequestsWaitTime = 100000
2727

2828
before(async function () {

0 commit comments

Comments
 (0)