Skip to content

Instantly share code, notes, and snippets.

@Nicktho
Created April 6, 2016 00:52
Show Gist options
  • Save Nicktho/f2249d769a9469c83dbe7f4612d0b6cd to your computer and use it in GitHub Desktop.
Save Nicktho/f2249d769a9469c83dbe7f4612d0b6cd to your computer and use it in GitHub Desktop.
describe('createStore', () => {
describe('#getState', () => {
it('should return the current state', () => {
const state = { notes: [ 'hello world', 'hello' ] };
const store = createStore(x => x, state);
expect(store.getState()).to.equal(state);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment