Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/1a1894d1c77029c91d010a9099fde64f to your computer and use it in GitHub Desktop.
Save dvallin/1a1894d1c77029c91d010a9099fde64f to your computer and use it in GitHub Desktop.
describe("store task handling", () => {
describe("mutations", () => {
it("adds tasks", () => {
const state = { tasks: [] };
mutations.taskAdded(state, {
type: Mutations.TaskAdded,
task: new Task("task1")
});
expect(state.tasks.length).toBe(1);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment