Skip to content

Commit 33a39f0

Browse files
committedSep 25, 2020
remove only
1 parent a149fb0 commit 33a39f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/mount-deep.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,13 @@ it('excludes forwardRef node but renders wrapped component', () => {
137137
expect(mountToJson(mounted, deepOptions)).toMatchSnapshot();
138138
});
139139

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

143143
expect(mountToJson(mounted, deepOptions)).toMatchSnapshot();
144144
});
145145

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.