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 b58ecda commit 07bd8c4Copy full SHA for 07bd8c4
packages/e2e-tests/test/e2e-streams.spec.ts
packages/e2e-tests/test/test-shell.ts
@@ -292,13 +292,10 @@ export class TestShell {
292
this.writeInput(`${chars}\n`);
293
}
294
295
- async executeLine(
296
- line: string,
297
- opts: { timeout?: number; promptPattern?: RegExp } = {}
298
- ): Promise<string> {
+ async executeLine(line: string): Promise<string> {
299
const previousOutputLength = this._output.length;
300
this.writeInputLine(line);
301
- await this.waitForPrompt(previousOutputLength, opts);
+ await this.waitForPrompt(previousOutputLength);
302
return this._output.slice(previousOutputLength);
303
304
0 commit comments