Update enzyme adapter for react tests (#80)
Closes #78 Closes #79 I updated the version of react the main app uses, but forgot to update the adapter for challenge tests.
This commit is contained in:
committed by
Mrugesh Mohapatra
parent
d7bddb46b0
commit
cb9358243d
@ -1,7 +1,7 @@
|
|||||||
import { toString, flow } from 'lodash';
|
import { toString, flow } from 'lodash';
|
||||||
import Rx, { Observable } from 'rxjs';
|
import Rx, { Observable } from 'rxjs';
|
||||||
import { ShallowWrapper, ReactWrapper } from 'enzyme';
|
import { ShallowWrapper, ReactWrapper } from 'enzyme';
|
||||||
import Adapter15 from 'enzyme-adapter-react-15';
|
import Adapter16 from 'enzyme-adapter-react-16';
|
||||||
import { isJSEnabledSelector } from '../redux';
|
import { isJSEnabledSelector } from '../redux';
|
||||||
import 'chai';
|
import 'chai';
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ const writeTestDepsToDocument = frameReady => ctx => {
|
|||||||
shallow: (node, options) =>
|
shallow: (node, options) =>
|
||||||
new ShallowWrapper(node, null, {
|
new ShallowWrapper(node, null, {
|
||||||
...options,
|
...options,
|
||||||
adapter: new Adapter15()
|
adapter: new Adapter16()
|
||||||
}),
|
}),
|
||||||
mount: (node, options) =>
|
mount: (node, options) =>
|
||||||
new ReactWrapper(node, null, {
|
new ReactWrapper(node, null, {
|
||||||
...options,
|
...options,
|
||||||
adapter: new Adapter15()
|
adapter: new Adapter16()
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
// default for classic challenges
|
// default for classic challenges
|
||||||
|
Reference in New Issue
Block a user