-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove defaultProps from SegmentedControlIOS (#31804)
Summary: Issue #31604 . Remove `defaultProps` from `SegmentedControlIOS`. ## Changelog [JavaScript] [Changed] - Remove defaultProps from SegmentedControlIOS Pull Request resolved: #31804 Test Plan: Added tests for `SegmentedControlIOS` pass. Reviewed By: yungsters Differential Revision: D29653982 Pulled By: lunaleaps fbshipit-source-id: ed6e133cc3af629be6cd83be79e402ad1e68b29b
- Loading branch information
1 parent
b5c94e3
commit fa0518d
Showing
3 changed files
with
155 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
Libraries/Components/SegmentedControlIOS/__tests__/SegmentedContolIOS-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @format | ||
* @emails oncall+react_native | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const React = require('react'); | ||
const ReactTestRenderer = require('react-test-renderer'); | ||
|
||
const SegmentedControlIOS = require('../SegmentedControlIOS.ios'); | ||
|
||
describe('SegmentedControlIOS', () => { | ||
it('renders the segmented control', () => { | ||
const component = ReactTestRenderer.create(<SegmentedControlIOS />); | ||
expect(component).not.toBeNull(); | ||
}); | ||
it('renders the segmented control with enabled default value', () => { | ||
const component = ReactTestRenderer.create(<SegmentedControlIOS />); | ||
expect(component.toTree().rendered.props.enabled).toBe(true); | ||
expect(component).toMatchSnapshot(); | ||
}); | ||
it('renders the segmented control with enabled', () => { | ||
const component = ReactTestRenderer.create( | ||
<SegmentedControlIOS enabled={true} />, | ||
); | ||
expect(component.toTree().rendered.props.enabled).toBe(true); | ||
expect(component).toMatchSnapshot(); | ||
}); | ||
it('renders the segmented control with enabled set to false', () => { | ||
const component = ReactTestRenderer.create( | ||
<SegmentedControlIOS enabled={false} />, | ||
); | ||
expect(component.toTree().rendered.props.enabled).toBe(false); | ||
expect(component).toMatchSnapshot(); | ||
}); | ||
it('renders the segmented control with values default value', () => { | ||
const component = ReactTestRenderer.create(<SegmentedControlIOS />); | ||
expect(component.toTree().rendered.props.values).toEqual([]); | ||
expect(component).toMatchSnapshot(); | ||
}); | ||
it('renders the segmented control with values', () => { | ||
const values = ['One', 'Two']; | ||
const component = ReactTestRenderer.create( | ||
<SegmentedControlIOS values={values} />, | ||
); | ||
expect(component.toTree().rendered.props.values).toBe(values); | ||
expect(component).toMatchSnapshot(); | ||
}); | ||
}); |
86 changes: 86 additions & 0 deletions
86
...es/Components/SegmentedControlIOS/__tests__/__snapshots__/SegmentedContolIOS-test.js.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`SegmentedControlIOS renders the segmented control with enabled 1`] = ` | ||
<RCTSegmentedControl | ||
enabled={true} | ||
onChange={[Function]} | ||
style={ | ||
Array [ | ||
Object { | ||
"height": 28, | ||
}, | ||
undefined, | ||
] | ||
} | ||
values={Array []} | ||
/> | ||
`; | ||
|
||
exports[`SegmentedControlIOS renders the segmented control with enabled default value 1`] = ` | ||
<RCTSegmentedControl | ||
enabled={true} | ||
onChange={[Function]} | ||
style={ | ||
Array [ | ||
Object { | ||
"height": 28, | ||
}, | ||
undefined, | ||
] | ||
} | ||
values={Array []} | ||
/> | ||
`; | ||
|
||
exports[`SegmentedControlIOS renders the segmented control with enabled set to false 1`] = ` | ||
<RCTSegmentedControl | ||
enabled={false} | ||
onChange={[Function]} | ||
style={ | ||
Array [ | ||
Object { | ||
"height": 28, | ||
}, | ||
undefined, | ||
] | ||
} | ||
values={Array []} | ||
/> | ||
`; | ||
|
||
exports[`SegmentedControlIOS renders the segmented control with values 1`] = ` | ||
<RCTSegmentedControl | ||
enabled={true} | ||
onChange={[Function]} | ||
style={ | ||
Array [ | ||
Object { | ||
"height": 28, | ||
}, | ||
undefined, | ||
] | ||
} | ||
values={ | ||
Array [ | ||
"One", | ||
"Two", | ||
] | ||
} | ||
/> | ||
`; | ||
|
||
exports[`SegmentedControlIOS renders the segmented control with values default value 1`] = ` | ||
<RCTSegmentedControl | ||
enabled={true} | ||
onChange={[Function]} | ||
style={ | ||
Array [ | ||
Object { | ||
"height": 28, | ||
}, | ||
undefined, | ||
] | ||
} | ||
values={Array []} | ||
/> | ||
`; |