Skip to content

Commit

Permalink
remove only
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanmarks committed Sep 25, 2020
1 parent a149fb0 commit 33a39f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/mount-deep.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,13 @@ it('excludes forwardRef node but renders wrapped component', () => {
expect(mountToJson(mounted, deepOptions)).toMatchSnapshot();
});

it.only('excludes memo node but renders wrapped component', () => {
it('excludes memo node but renders wrapped component', () => {
const mounted = mount(<BasicMemo className="foo" />);

expect(mountToJson(mounted, deepOptions)).toMatchSnapshot();
});

it.only('excludes memo node but renders wrapped top level array properly', () => {
it('excludes memo node but renders wrapped top level array properly', () => {
const mounted = mount(<ArrayMemo className="foo" />);

expect(mountToJson(mounted, deepOptions)).toMatchSnapshot();
Expand Down

0 comments on commit 33a39f0

Please sign in to comment.