Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/1c735e3091cf01c298ba4d4cd658442a to your computer and use it in GitHub Desktop.
Save dvallin/1c735e3091cf01c298ba4d4cd658442a to your computer and use it in GitHub Desktop.
describe('add task', () => {
it('calls add task on key enter', () => {
const wrapper = mount(NewTaskInput);
const addTask = jest.fn();
wrapper.setMethods({addTask});
wrapper.find('input').trigger('keyup.enter');
expect(addTask).toHaveBeenCalled();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment