diff --git a/packages/plugin-select/src/select/__tests__/SelectSpec.js b/packages/plugin-select/src/select/__tests__/SelectSpec.js index 22a92dc1..403847b2 100644 --- a/packages/plugin-select/src/select/__tests__/SelectSpec.js +++ b/packages/plugin-select/src/select/__tests__/SelectSpec.js @@ -1,7 +1,4 @@ -import { - getContextValue, - renderWithContext, -} from '@ima/testing-library'; +import { getContextValue, renderWithContext } from '@ima/testing-library'; import { PureComponent, createRef } from 'react'; import forwardedSelect, { @@ -139,12 +136,7 @@ describe('plugin-select:', () => { } render() { - return ( -
- {JSON.stringify(this.props, null, 2)} - ref?: {this.props.forwardedRef ? 'true' : 'false'} -
- ); + return
{JSON.stringify(this.props, null, 2)}
; } } diff --git a/packages/plugin-select/src/select/__tests__/__snapshots__/SelectSpec.js.snap b/packages/plugin-select/src/select/__tests__/__snapshots__/SelectSpec.js.snap index 4550e804..ccae0033 100644 --- a/packages/plugin-select/src/select/__tests__/__snapshots__/SelectSpec.js.snap +++ b/packages/plugin-select/src/select/__tests__/__snapshots__/SelectSpec.js.snap @@ -48,8 +48,6 @@ exports[`plugin-select: select should forward ref 1`] = ` "width": 90, "height": 60 } - ref?: - false `; @@ -62,8 +60,6 @@ exports[`plugin-select: select should render component 1`] = ` "color": "red" } } - ref?: - false `; @@ -78,8 +74,6 @@ exports[`plugin-select: select should render component with changed props 1`] = "width": 270, "height": 180 } - ref?: - false `; @@ -94,8 +88,6 @@ exports[`plugin-select: select should render component with extraProps 1`] = ` "width": 90, "height": 60 } - ref?: - false `; @@ -110,8 +102,6 @@ exports[`plugin-select: select should render component with extraProps and own c "width": 90, "height": 60 } - ref?: - false `; @@ -126,8 +116,6 @@ exports[`plugin-select: select should render component with extraProps and own s "width": 90, "height": 60 } - ref?: - false `; @@ -143,8 +131,6 @@ exports[`plugin-select: select should render component with extraProps and own s "width": 90, "height": 60 } - ref?: - false `; @@ -159,8 +145,6 @@ exports[`plugin-select: select should render component with extraProps modifies "width": 45, "height": 30 } - ref?: - false `; @@ -176,7 +160,5 @@ exports[`plugin-select: select should render component with extraProps replaced "width": 90, "height": 60 } - ref?: - false `;