15 lines
390 B
TypeScript
15 lines
390 B
TypeScript
import { FindRepositoryImpl } from '../../../src/content/repositories/FindRepository';
|
|
import { expect } from 'chai';
|
|
|
|
describe('FindRepositoryImpl', () => {
|
|
it('updates and gets last keyword', () => {
|
|
let sut = new FindRepositoryImpl();
|
|
|
|
expect(sut.getLastKeyword()).to.be.null;
|
|
|
|
sut.setLastKeyword('monkey');
|
|
|
|
expect(sut.getLastKeyword()).to.equal('monkey');
|
|
});
|
|
});
|
|
|