Skip to content

Commit

Permalink
fix: remove console log 🤓
Browse files Browse the repository at this point in the history
  • Loading branch information
cleverjam committed Jan 17, 2020
1 parent aaefdf8 commit f17c8a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/useCopyToClipboard.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('useCopyToClipboard', () => {
testValue = ''; // emtpy string is also invalid
act(() => copyToClipboard(testValue));
[state, copyToClipboard] = hook.result.current;
console.log(state);

expect(writeText).not.toBeCalled();
expect(state.value).toBe(testValue);
expect(state.noUserInteraction).toBe(true);
Expand Down

0 comments on commit f17c8a0

Please sign in to comment.