find
This commit is contained in:
parent
fcd15f4f09
commit
ebfb172520
1 changed files with 3 additions and 3 deletions
|
@ -113,7 +113,7 @@ describe('FindUseCase', () => {
|
|||
presenter.document = 'gorilla kick';
|
||||
repository.keyword = 'gorilla';
|
||||
|
||||
await sut.startFind(null);
|
||||
await sut.startFind(undefined);
|
||||
|
||||
expect(await presenter.highlighted).to.be.true;
|
||||
expect(await consoleClient.text).to.equal('Pattern found: gorilla');
|
||||
|
@ -127,7 +127,7 @@ describe('FindUseCase', () => {
|
|||
repository.keyword = null;
|
||||
client.keyword = 'chimpanzee';
|
||||
|
||||
await sut.startFind(null);
|
||||
await sut.startFind(undefined);
|
||||
|
||||
expect(await presenter.highlighted).to.be.true;
|
||||
expect(await consoleClient.text).to.equal('Pattern found: chimpanzee');
|
||||
|
@ -150,7 +150,7 @@ describe('FindUseCase', () => {
|
|||
repository.keyword = null;
|
||||
client.keyword = null;
|
||||
|
||||
await sut.startFind(null);
|
||||
await sut.startFind(undefined);
|
||||
|
||||
expect(await consoleClient.text).to.equal('No previous search keywords');
|
||||
expect(await consoleClient.isError).to.be.true;
|
||||
|
|
Reference in a new issue