Skip to content

Commit abd2ab7

Browse files
committed
tests: only run feature dev e2e tests on stable
1 parent 8fd0c48 commit abd2ab7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ describe('Amazon Q Feature Dev', function () {
2626
const tooManyRequestsWaitTime = 100000
2727

2828
before(async function () {
29+
/**
30+
* The tests are getting throttled, only run them on stable for now
31+
*
32+
* TODO: Re-enable for all versions once the backend can handle them
33+
*/
34+
if (process.env['VSCODE_TEST_VERSION'] !== 'stable') {
35+
this.skip()
36+
}
37+
2938
await using(registerAuthHook('amazonq-test-account'), async () => {
3039
await loginToIdC()
3140
})

0 commit comments

Comments
 (0)