You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

24 lines
649 B

import FollowSlaveRepository, { FollowSlaveRepositoryImpl }
from '../../../src/content/repositories/FollowSlaveRepository';
import { expect } from 'chai';
describe('FollowSlaveRepository', () => {
let sut: FollowSlaveRepository;
before(() => {
sut = new FollowSlaveRepositoryImpl();
});
describe('#isFollowMode()/#enableFollowMode()/#disableFollowMode()', () => {
it('gets, adds updates follow mode', () => {
expect(sut.isFollowMode()).to.be.false;
sut.enableFollowMode();
expect(sut.isFollowMode()).to.be.true;
sut.disableFollowMode();
expect(sut.isFollowMode()).to.be.false;
});
});
});