mirror of
https://github.com/strapi/strapi.git
synced 2025-08-30 19:56:05 +00:00
32 lines
723 B
JavaScript
32 lines
723 B
JavaScript
// import React from 'react';
|
|
// import renderer from 'react-test-renderer';
|
|
// import { IntlProvider } from 'react-intl';
|
|
|
|
// import TriggerContainer from '../index';
|
|
|
|
describe('<TriggerContainer />', () => {
|
|
// const props = {
|
|
// isPending: false,
|
|
// onCancel: jest.fn(),
|
|
// response: {
|
|
// statusCode: 200,
|
|
// message: 'success',
|
|
// },
|
|
// };
|
|
|
|
// FIXME: snapshots
|
|
// it('should match the snapshot', () => {
|
|
// const tree = renderer.create(
|
|
// <IntlProvider locale="en">
|
|
// <TriggerContainer {...props} />
|
|
// </IntlProvider>
|
|
// );
|
|
|
|
// expect(tree).toMatchSnapshot();
|
|
// });
|
|
|
|
it('Should have some tests', () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|