diff options
author | Francesco Agosti <francesco.agosti93@gmail.com> | 2018-10-03 08:07:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-03 08:07:23 +0800 |
commit | bce43a0050056195acb9c4890f57526985268da9 (patch) | |
tree | e45bd26d0c602d9a1d5a820fba61d56ee67cadab /packages/instant/test | |
parent | 678deccfcad5b0e9039b82b766def6b383ede786 (diff) | |
parent | 81b08c0339ba94167d4192261cc5ed42f7614019 (diff) | |
download | dexon-sol-tools-bce43a0050056195acb9c4890f57526985268da9.tar dexon-sol-tools-bce43a0050056195acb9c4890f57526985268da9.tar.gz dexon-sol-tools-bce43a0050056195acb9c4890f57526985268da9.tar.bz2 dexon-sol-tools-bce43a0050056195acb9c4890f57526985268da9.tar.lz dexon-sol-tools-bce43a0050056195acb9c4890f57526985268da9.tar.xz dexon-sol-tools-bce43a0050056195acb9c4890f57526985268da9.tar.zst dexon-sol-tools-bce43a0050056195acb9c4890f57526985268da9.zip |
Merge pull request #1109 from 0xProject/feature/instant/init
[instant] Initialize the package with dev environment and tests etc..
Diffstat (limited to 'packages/instant/test')
-rw-r--r-- | packages/instant/test/components/zero_ex_instant.test.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/instant/test/components/zero_ex_instant.test.tsx b/packages/instant/test/components/zero_ex_instant.test.tsx new file mode 100644 index 000000000..5858732cf --- /dev/null +++ b/packages/instant/test/components/zero_ex_instant.test.tsx @@ -0,0 +1,13 @@ +import { configure, shallow } from 'enzyme'; +import * as Adapter from 'enzyme-adapter-react-16'; +import * as React from 'react'; + +configure({ adapter: new Adapter() }); + +import { ZeroExInstant } from '../../src'; + +describe('<ZeroExInstant />', () => { + it('shallow renders without crashing', () => { + shallow(<ZeroExInstant />); + }); +}); |