Skip to content

Commit 07bd8c4

Browse files
authored
Revert "test: add success e2e tests for stream processing commands MONGOSH-2127 (#2459)" (#2477)
This reverts commit f3f983b.
1 parent b58ecda commit 07bd8c4

File tree

2 files changed

+2
-363
lines changed

2 files changed

+2
-363
lines changed

packages/e2e-tests/test/e2e-streams.spec.ts

Lines changed: 0 additions & 358 deletions
This file was deleted.

packages/e2e-tests/test/test-shell.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -292,13 +292,10 @@ export class TestShell {
292292
this.writeInput(`${chars}\n`);
293293
}
294294

295-
async executeLine(
296-
line: string,
297-
opts: { timeout?: number; promptPattern?: RegExp } = {}
298-
): Promise<string> {
295+
async executeLine(line: string): Promise<string> {
299296
const previousOutputLength = this._output.length;
300297
this.writeInputLine(line);
301-
await this.waitForPrompt(previousOutputLength, opts);
298+
await this.waitForPrompt(previousOutputLength);
302299
return this._output.slice(previousOutputLength);
303300
}
304301

0 commit comments

Comments
 (0)