Skip to content

Commit dc91066

Browse files
bolivierlayershifter
authored andcommitted
Remove unnecessary describe wrapper
1 parent 05f5e07 commit dc91066

File tree

1 file changed

+18
-20
lines changed

1 file changed

+18
-20
lines changed

test/specs/collections/Form/FormField-test.js

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -247,26 +247,24 @@ describe('FormField', () => {
247247
})
248248
})
249249

250-
describe.only('forwards ref', () => {
251-
common.forwardsRef(FormField)
252-
common.forwardsRef(FormField, {
253-
tagName: 'input',
254-
requiredProps: { control: 'input' },
255-
})
256-
common.forwardsRef(FormField, {
257-
tagName: 'input',
258-
requiredProps: { control: 'input', type: 'radio' },
259-
})
260-
common.forwardsRef(FormField, {
261-
tagName: 'input',
262-
requiredProps: { control: 'input', type: 'checkbox' },
263-
})
250+
common.forwardsRef(FormField)
251+
common.forwardsRef(FormField, {
252+
tagName: 'input',
253+
requiredProps: { control: 'input' },
254+
})
255+
common.forwardsRef(FormField, {
256+
tagName: 'input',
257+
requiredProps: { control: 'input', type: 'radio' },
258+
})
259+
common.forwardsRef(FormField, {
260+
tagName: 'input',
261+
requiredProps: { control: 'input', type: 'checkbox' },
262+
})
264263

265-
common.forwardsRef(FormField, {
266-
tagName: 'div',
267-
requiredProps: {
268-
children: <input />,
269-
},
270-
})
264+
common.forwardsRef(FormField, {
265+
tagName: 'div',
266+
requiredProps: {
267+
children: <input />,
268+
},
271269
})
272270
})

0 commit comments

Comments
 (0)