Skip to content

Commit 2224a86

Browse files
committed
Remove some redundant testing properties
1 parent 3b7ba15 commit 2224a86

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

test/CheckboxTree.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ describe('<CheckboxTree />', () => {
1010
it('should render the react-checkbox-tree container', () => {
1111
const wrapper = shallow(
1212
<CheckboxTree
13-
checked={[]}
14-
expanded={[]}
1513
nodes={[]}
1614
onCheck={() => {}}
1715
onExpand={() => {}}
@@ -191,7 +189,6 @@ describe('<CheckboxTree />', () => {
191189

192190
const wrapper = mount(
193191
<CheckboxTree
194-
checked={[]}
195192
noCascade
196193
nodes={[
197194
{
@@ -218,7 +215,6 @@ describe('<CheckboxTree />', () => {
218215

219216
const wrapper = mount(
220217
<CheckboxTree
221-
checked={[]}
222218
nodes={[
223219
{
224220
value: 'jupiter',
@@ -308,7 +304,6 @@ describe('<CheckboxTree />', () => {
308304
it('should only render show checkboxes for leaf nodes', () => {
309305
const wrapper = mount(
310306
<CheckboxTree
311-
checked={[]}
312307
expanded={['jupiter']}
313308
nodes={[
314309
{
@@ -464,7 +459,6 @@ describe('<CheckboxTree />', () => {
464459

465460
const wrapper = mount(
466461
<CheckboxTree
467-
checked={[]}
468462
nodes={[
469463
{
470464
value: 'jupiter',
@@ -490,7 +484,6 @@ describe('<CheckboxTree />', () => {
490484

491485
const wrapper = mount(
492486
<CheckboxTree
493-
checked={[]}
494487
nodes={[
495488
{
496489
value: 'jupiter',
@@ -516,7 +509,6 @@ describe('<CheckboxTree />', () => {
516509

517510
const wrapper = mount(
518511
<CheckboxTree
519-
checked={[]}
520512
nodes={[
521513
{
522514
value: 'jupiter',
@@ -544,7 +536,6 @@ describe('<CheckboxTree />', () => {
544536

545537
const wrapper = mount(
546538
<CheckboxTree
547-
checked={[]}
548539
nodes={[
549540
{
550541
value: 'jupiter',
@@ -597,7 +588,6 @@ describe('<CheckboxTree />', () => {
597588

598589
const wrapper = mount(
599590
<CheckboxTree
600-
checked={[]}
601591
nodes={[
602592
{
603593
value: 'jupiter',
@@ -649,7 +639,6 @@ describe('<CheckboxTree />', () => {
649639
const wrapper = mount(
650640
<CheckboxTree
651641
expanded={['jupiter']}
652-
checked={[]}
653642
nodes={[
654643
{
655644
value: 'jupiter',

0 commit comments

Comments
 (0)