Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/70c22edaa4da3254d8d00be4579b0314 to your computer and use it in GitHub Desktop.
Save dvallin/70c22edaa4da3254d8d00be4579b0314 to your computer and use it in GitHub Desktop.
describe("getters", () => {
it("finds tasks by title", () => {
const task1 = new Task("task1");
const state = { tasks: [task1] };
expect(getters.taskByTitle(state, getters)("task1")).toBe(task1);
expect(getters.taskByTitle(state, getters)("task2")).toBeUndefined();
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment