2019-04-05 02:23:40 +07:00
|
|
|
import React from 'react';
|
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
|
2019-08-24 21:57:51 +07:00
|
|
|
describe('<Version /> component', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.resetModules();
|
|
|
|
});
|
2019-04-05 02:23:40 +07:00
|
|
|
|
|
|
|
test('should render the component in default state', () => {
|
2019-08-24 21:57:51 +07:00
|
|
|
const packageMeta = {
|
|
|
|
versions: {
|
|
|
|
'1.0.0': {
|
|
|
|
version: '1.0.0',
|
|
|
|
},
|
|
|
|
'2.0.0': {
|
|
|
|
version: '2.0.0',
|
|
|
|
},
|
|
|
|
'3.0.0': {
|
|
|
|
version: '3.0.0',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
time: {
|
|
|
|
'1.0.0': '2016-08-26T22:36:41.762Z',
|
|
|
|
'2.0.0': '2017-08-26T22:36:41.762Z',
|
|
|
|
'3.0.0': '2018-02-07T06:43:22.801Z',
|
|
|
|
},
|
|
|
|
'dist-tags': {
|
|
|
|
latest: '3.0.0',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
jest.doMock('../../pages/version/Version', () => ({
|
|
|
|
DetailContextConsumer: component => {
|
|
|
|
return component.children({ packageMeta });
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
|
|
|
const Version = require('./Versions').default;
|
|
|
|
const wrapper = shallow(<Version />);
|
2019-04-05 02:23:40 +07:00
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|