Skip to content

Instantly share code, notes, and snippets.

@niinpatel
Created February 25, 2019 16:20
Show Gist options
  • Save niinpatel/f76eee1962be7bf0733955fa86aa2880 to your computer and use it in GitHub Desktop.
Save niinpatel/f76eee1962be7bf0733955fa86aa2880 to your computer and use it in GitHub Desktop.
test('should update the value when onChange is called', () => {
act(() => {
nameField.onChange({ target: { value: 'nitin' } });
});
expect(nameField.value).toBe('nitin');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment