mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 17:46:56 +03:00
f99c76f9d3
* Add react-dock * Remove bundle * fix
24 lines
611 B
JavaScript
24 lines
611 B
JavaScript
import React from 'react';
|
|
import ShallowRenderer from 'react-test-renderer/shallow';
|
|
import Dock from '../src/Dock';
|
|
|
|
describe('Dock component', function () {
|
|
it('should have shallow rendering', function () {
|
|
const shallowRenderer = new ShallowRenderer();
|
|
const DockEl = <Dock />;
|
|
shallowRenderer.render(DockEl);
|
|
|
|
const result = shallowRenderer.getRenderOutput();
|
|
|
|
expect(DockEl.props).toEqual({
|
|
position: 'left',
|
|
zIndex: 99999999,
|
|
fluid: true,
|
|
defaultSize: 0.3,
|
|
dimMode: 'opaque',
|
|
duration: 200,
|
|
});
|
|
expect(result.type).toBe('div');
|
|
});
|
|
});
|