nexxtway/react-rainbow

View on GitHub
src/components/Slider/__test__/slider.spec.js

Summary

Maintainability
C
1 day
Test Coverage

Similar blocks of code found in 10 locations. Consider refactoring.
Open

    it('should set "left" to labelAlignment prop passed in the Label component', () => {
        const component = mount(<Slider label="Slider Label" labelAlignment="left" />);
        expect(component.find(StyledLabel).prop('labelAlignment')).toBe('left');
    });
Severity: Major
Found in src/components/Slider/__test__/slider.spec.js and 9 other locations - About 1 hr to fix
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 60..65
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 67..72
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 64..69
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 70..75
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 44..47
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 49..52
src/components/Rating/__test__/rating.spec.js on lines 24..27
src/components/Rating/__test__/rating.spec.js on lines 28..31
src/components/Slider/__test__/slider.spec.js on lines 42..45

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 71.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 10 locations. Consider refactoring.
Open

    it('should set "right" to labelAlignment prop passed in the Label component', () => {
        const component = mount(<Slider label="Slider Label" labelAlignment="right" />);
        expect(component.find(StyledLabel).prop('labelAlignment')).toBe('right');
    });
Severity: Major
Found in src/components/Slider/__test__/slider.spec.js and 9 other locations - About 1 hr to fix
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 60..65
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 67..72
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 64..69
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 70..75
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 44..47
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 49..52
src/components/Rating/__test__/rating.spec.js on lines 24..27
src/components/Rating/__test__/rating.spec.js on lines 28..31
src/components/Slider/__test__/slider.spec.js on lines 38..41

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 71.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 3 locations. Consider refactoring.
Open

    it('should render required asterisk when required prop is true', () => {
        const component = mount(<Slider label="My label" required />);
        expect(component.find('RequiredAsterisk').exists()).toBe(true);
    });
Severity: Major
Found in src/components/Slider/__test__/slider.spec.js and 2 other locations - About 1 hr to fix
src/components/ButtonGroupPicker/__test__/buttonGroupPicker.spec.js on lines 30..33
src/components/WeekDayPicker/__test__/weekDayPicker.spec.js on lines 29..32

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 68.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

    it('should set "center" to labelAlignment if prop not passed in the Label component', () => {
        const component = mount(<Slider label="Slider Label" />);
        expect(component.find(StyledLabel).prop('labelAlignment')).toBe('center');
    });
Severity: Major
Found in src/components/Slider/__test__/slider.spec.js and 7 other locations - About 1 hr to fix
src/components/Card/__test__/card.spec.js on lines 40..43
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 74..77
src/components/MenuItem/__test__/menuItem.spec.js on lines 12..15
src/components/Notification/__test__/notification.spec.js on lines 15..18
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 76..79
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 54..57
src/components/Rating/__test__/rating.spec.js on lines 32..35

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 17 locations. Consider refactoring.
Open

    it('should render a label when label prop is passed', () => {
        const component = mount(<Slider label="Slider Label" />);
        expect(component.find(StyledLabel).exists()).toBe(true);
    });
Severity: Major
Found in src/components/Slider/__test__/slider.spec.js and 16 other locations - About 1 hr to fix
src/components/ButtonGroupPicker/__test__/buttonGroupPicker.spec.js on lines 47..50
src/components/ButtonIcon/__test__/buttonIcon.spec.js on lines 65..68
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 55..58
src/components/CodeInput/__test__/codeInput.spec.js on lines 39..42
src/components/CodeInput/__test__/codeInput.spec.js on lines 47..50
src/components/FileSelector/__test__/fileSelector.spec.js on lines 57..60
src/components/Input/pickerInput/__test__/input.spec.js on lines 82..85
src/components/MultiSelect/__test__/multiSelect.spec.js on lines 12..15
src/components/MultiSelect/__test__/multiSelect.spec.js on lines 17..20
src/components/MultiSelect/__test__/multiSelect.spec.js on lines 22..25
src/components/MultiSelect/__test__/multiSelect.spec.js on lines 27..30
src/components/Option/__test__/option.spec.js on lines 131..134
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 60..63
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 39..42
src/components/Rating/__test__/rating.spec.js on lines 20..23
src/components/WeekDayPicker/__test__/weekDayPicker.spec.js on lines 51..54

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 65.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

There are no issues that match your filters.

Category
Status