chore: upgrade to eslint9 (#9163)

This commit is contained in:
Brooooooklyn
2024-12-14 10:29:04 +00:00
parent f49bef4915
commit aaaea8918f
37 changed files with 681 additions and 736 deletions

View File

@@ -100,7 +100,7 @@ export class MockCopilotTestProvider
// make some time gap for history test case
await sleep(100);
const result = 'generate text to text stream';
for await (const message of result) {
for (const message of result) {
yield message;
if (options.signal?.aborted) {
break;