Skip to content

Commit

Permalink
[Tests] mount: setProps: temporarily disable racy tests in React …
Browse files Browse the repository at this point in the history
…v15.2 + node 4
  • Loading branch information
ljharb committed Apr 5, 2021
1 parent 25b3de6 commit f046079
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/enzyme-test-suite/test/shared/methods/setProps.jsx
Expand Up @@ -17,6 +17,7 @@ export default function describeSetProps({
Wrap,
WrapperName,
isShallow,
isMount,
}) {
describe('.setProps(newProps[, callback)', () => {
class RendersNull extends React.Component {
Expand Down Expand Up @@ -82,7 +83,8 @@ export default function describeSetProps({
expect(wrapper.find('.bar')).to.have.lengthOf(1);
});

describe('merging props', () => {
// TODO: figure out why these tests are racy in React v15.2, but only in node 4 and for `mount`
describeIf(!isMount && !is('^15.2'), 'merging props', () => {
it('merges, not replaces, props when rerendering', () => {
const wrapper = Wrap(<Foo id="foo" foo="bar" />);
const rendered = () => (isShallow ? wrapper : wrapper.children());
Expand Down

0 comments on commit f046079

Please sign in to comment.