A fork of https://github.com/ueokande/vim-vixen
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.
16 lines
398 B
16 lines
398 B
6 years ago
|
import { AddonEnabledRepositoryImpl } from '../../../src/content/repositories/AddonEnabledRepository';
|
||
|
import { expect } from 'chai';
|
||
|
|
||
|
describe('AddonEnabledRepositoryImpl', () => {
|
||
|
it('updates and gets current value', () => {
|
||
|
let sut = new AddonEnabledRepositoryImpl();
|
||
|
|
||
|
sut.set(true);
|
||
|
expect(sut.get()).to.be.true;
|
||
|
|
||
|
sut.set(false);
|
||
|
expect(sut.get()).to.be.false;
|
||
|
});
|
||
|
});
|
||
|
|