Added errors store with tests

This commit is contained in:
Jori Lallo
2017-05-22 22:16:47 -07:00
parent 3353eb913a
commit 2a8cc80a86
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,27 @@
/* eslint-disable */
import ErrorsStore from './ErrorsStore';
// Actions
describe('ErrorsStore', () => {
let store;
beforeEach(() => {
store = new ErrorsStore();
});
test('#add should add errors', () => {
expect(store.errors.length).toBe(0);
store.add('first error');
store.add('second error');
expect(store.errors.length).toBe(2);
});
test('#remove should remove errors', () => {
store.add('first error');
store.add('second error');
expect(store.errors.length).toBe(2);
store.remove(0);
expect(store.errors.length).toBe(1);
expect(store.errors[0]).toBe('second error');
});
});