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 330ff09 commit 3fac216Copy full SHA for 3fac216
packages/amazonq/test/e2e/inline/inline.test.ts
@@ -91,9 +91,11 @@ describe('Amazon Q Inline', async function () {
91
* Allow some time between when the editor is opened and when we start typing.
92
* If we don't do this then the time between the initial editor selection
93
* and invoking the "type" command is too low, causing completion to never
94
- * activate. AFAICT there isn't anything we can use waitUntil on here
+ * activate. AFAICT there isn't anything we can use waitUntil on here.
95
+ *
96
+ * note: this number is entirely arbitrary
97
**/
- await sleep(1000)
98
+ await sleep(2000)
99
100
await invokeCompletion()
101
originalEditorContents = vscode.window.activeTextEditor?.document.getText()
0 commit comments