Skip to content

Commit

Permalink
use compat helper
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Mar 24, 2018
1 parent dd3eedb commit f79aec0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/enzyme-test-suite/test/ReactWrapper-spec.jsx
Expand Up @@ -11,7 +11,7 @@ import {
import { ITERATOR_SYMBOL, sym } from 'enzyme/build/Utils';

import './_helpers/setupAdapters';
import { createClass, createContext, createPortal } from './_helpers/react-compat';
import { createClass, createContext, createPortal, forwardRef } from './_helpers/react-compat';
import {
describeWithDOM,
describeIf,
Expand Down Expand Up @@ -186,7 +186,7 @@ describeWithDOM('mount', () => {
it('should mount without complaint', () => {
const warningStub = sinon.stub(console, 'error');

const SomeComponent = React.forwardRef((props, ref) => (
const SomeComponent = forwardRef((props, ref) => (
<div {...props} ref={ref} />
));

Expand All @@ -199,7 +199,7 @@ describeWithDOM('mount', () => {

it('should find elements through forwardedRef elements', () => {
const testRef = () => {};
const SomeComponent = React.forwardRef((props, ref) => (
const SomeComponent = forwardRef((props, ref) => (
<div ref={ref}>
<span className="child1" />
<span className="child2" />
Expand Down
2 changes: 1 addition & 1 deletion packages/enzyme-test-suite/test/ShallowWrapper-spec.jsx
Expand Up @@ -122,7 +122,7 @@ describe('shallow', () => {
});

itIf(REACT163, 'should find elements through forwardedRef elements', () => {
const SomeComponent = React.forwardRef((props, ref) => (
const SomeComponent = forwardRef((props, ref) => (
<div ref={ref}>
<span className="child1" />
<span className="child2" />
Expand Down

0 comments on commit f79aec0

Please sign in to comment.