We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba97d35 commit 5373a91Copy full SHA for 5373a91
packages/amazonq/test/e2e/inline/inline.test.ts
@@ -116,6 +116,12 @@ describe('Amazon Q Inline', async function () {
116
**/
117
await sleep(1000)
118
119
+ /**
120
+ * It seems like there are instances (race condition?) where amazon q starts generating when you open up
121
+ * the file. Wait for that initial request to settle before doing anything
122
+ */
123
+ await waitUntil(async () => !RecommendationService.instance.isRunning, waitOptions)
124
+
125
await invokeCompletion()
126
originalEditorContents = vscode.window.activeTextEditor?.document.getText()
127
0 commit comments