replace expect.createSpy() with jest.fn()

Signed-off-by: Stephen Solka <stephen0q@gmail.com>
This commit is contained in:
Stephen Solka 2018-12-24 21:55:10 -05:00 committed by J. Ryan Stinnett
parent c3185a4cdb
commit 0bb35944f9
5 changed files with 25 additions and 21 deletions

View file

@ -1,7 +1,7 @@
import React from 'react';
import ReactTestUtils from 'react-addons-test-utils';
import ReactDOM from 'react-dom';
import expect, {createSpy} from 'expect';
import expect from 'expect';
import sinon from 'sinon';
import Promise from 'bluebird';
import * as testUtils from '../../../test-utils';