mirror of
https://github.com/strapi/strapi.git
synced 2025-11-03 03:17:11 +00:00
Fix PR feedback
Signed-off-by: soupette <cyril@strapi.io>
This commit is contained in:
parent
0071df7c18
commit
7824f78dab
@ -1,31 +0,0 @@
|
|||||||
import { createGlobalStyle } from 'styled-components';
|
|
||||||
// TODO: DS check if needed with @HichamELBSI @mfrachet
|
|
||||||
import faBrandsLight from '@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff';
|
|
||||||
import faBrandsLight2 from '@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2';
|
|
||||||
import faRegularLight from '@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff';
|
|
||||||
import faRegularLight2 from '@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2';
|
|
||||||
import faSolidHeavy from '@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff';
|
|
||||||
import faSolidHeavy2 from '@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2';
|
|
||||||
|
|
||||||
const Fonts = createGlobalStyle`
|
|
||||||
@font-face {
|
|
||||||
font-family: 'FontAwesome';
|
|
||||||
src: url(${faBrandsLight2}) format("woff2"), url(${faBrandsLight}) format("woff");
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
@font-face {
|
|
||||||
font-family: 'FontAwesome';
|
|
||||||
src: url(${faRegularLight2}) format("woff2"), url(${faRegularLight}) format("woff");
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
@font-face {
|
|
||||||
font-family: 'FontAwesome';
|
|
||||||
src: url(${faSolidHeavy2}) format("woff2"), url(${faSolidHeavy}) format("woff");
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export default Fonts;
|
|
||||||
@ -3,12 +3,10 @@ import { ThemeProvider } from '@strapi/parts/ThemeProvider';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { lightTheme } from '@strapi/parts';
|
import { lightTheme } from '@strapi/parts';
|
||||||
import GlobalStyle from '../GlobalStyle';
|
import GlobalStyle from '../GlobalStyle';
|
||||||
import Fonts from '../Fonts';
|
|
||||||
|
|
||||||
const Theme = ({ children, theme }) => (
|
const Theme = ({ children, theme }) => (
|
||||||
<ThemeProvider theme={theme}>
|
<ThemeProvider theme={theme}>
|
||||||
<GlobalStyle />
|
<GlobalStyle />
|
||||||
<Fonts />
|
|
||||||
{children}
|
{children}
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -1,47 +1,48 @@
|
|||||||
import React from 'react';
|
// import React from 'react';
|
||||||
import { Router, Route, Switch } from 'react-router-dom';
|
// import { Router, Route, Switch } from 'react-router-dom';
|
||||||
// import { render, cleanup } from '@testing-library/react';
|
// // import { render, cleanup } from '@testing-library/react';
|
||||||
import { shallow } from 'enzyme';
|
// import { shallow } from 'enzyme';
|
||||||
import { createMemoryHistory } from 'history';
|
// import { createMemoryHistory } from 'history';
|
||||||
import { GlobalContextProvider } from '@strapi/helper-plugin';
|
// import { GlobalContextProvider } from '@strapi/helper-plugin';
|
||||||
import { IntlProvider } from 'react-intl';
|
// import { IntlProvider } from 'react-intl';
|
||||||
|
|
||||||
import translationMessages from '../../../../translations/en.json';
|
// import translationMessages from '../../../../translations/en.json';
|
||||||
|
|
||||||
import EditView from '../index';
|
// import EditView from '../index';
|
||||||
|
|
||||||
const history = createMemoryHistory();
|
// const history = createMemoryHistory();
|
||||||
|
|
||||||
describe('Admin | containers | EditView', () => {
|
describe('Admin | containers | EditView', () => {
|
||||||
it('should not crash', () => {
|
test.todo('should not crash');
|
||||||
const intlProvider = new IntlProvider(
|
// it('should not crash', () => {
|
||||||
{
|
// const intlProvider = new IntlProvider(
|
||||||
locale: 'en',
|
// {
|
||||||
messages: translationMessages,
|
// locale: 'en',
|
||||||
},
|
// messages: translationMessages,
|
||||||
{}
|
// },
|
||||||
);
|
// {}
|
||||||
const { intl: originalIntl } = intlProvider.state;
|
// );
|
||||||
|
// const { intl: originalIntl } = intlProvider.state;
|
||||||
|
|
||||||
shallow(
|
// shallow(
|
||||||
<IntlProvider
|
// <IntlProvider
|
||||||
locale="en"
|
// locale="en"
|
||||||
defaultLocale="en"
|
// defaultLocale="en"
|
||||||
messages={translationMessages}
|
// messages={translationMessages}
|
||||||
textComponent="span"
|
// textComponent="span"
|
||||||
>
|
// >
|
||||||
<GlobalContextProvider formatMessage={originalIntl.formatMessage}>
|
// <GlobalContextProvider formatMessage={originalIntl.formatMessage}>
|
||||||
<Router history={history}>
|
// <Router history={history}>
|
||||||
<Switch>
|
// <Switch>
|
||||||
<Route path="/settings/webhooks/create">
|
// <Route path="/settings/webhooks/create">
|
||||||
<EditView />
|
// <EditView />
|
||||||
</Route>
|
// </Route>
|
||||||
</Switch>
|
// </Switch>
|
||||||
</Router>
|
// </Router>
|
||||||
</GlobalContextProvider>
|
// </GlobalContextProvider>
|
||||||
</IntlProvider>
|
// </IntlProvider>
|
||||||
);
|
// );
|
||||||
});
|
// });
|
||||||
|
|
||||||
// FIXME
|
// FIXME
|
||||||
// afterEach(cleanup);
|
// afterEach(cleanup);
|
||||||
|
|||||||
@ -1,40 +1,41 @@
|
|||||||
import React from 'react';
|
// import React from 'react';
|
||||||
import { Router, Route, Switch } from 'react-router-dom';
|
// import { Router, Route, Switch } from 'react-router-dom';
|
||||||
import { shallow } from 'enzyme';
|
// import { shallow } from 'enzyme';
|
||||||
import { createMemoryHistory } from 'history';
|
// import { createMemoryHistory } from 'history';
|
||||||
import { GlobalContextProvider } from '@strapi/helper-plugin';
|
// import { GlobalContextProvider } from '@strapi/helper-plugin';
|
||||||
import { IntlProvider } from 'react-intl';
|
// import { IntlProvider } from 'react-intl';
|
||||||
import Notifications from '../../../../components/Notifications';
|
// import Notifications from '../../../../components/Notifications';
|
||||||
|
|
||||||
import translationMessages from '../../../../translations/en.json';
|
// import translationMessages from '../../../../translations/en.json';
|
||||||
|
|
||||||
import ListView from '../index';
|
// import ListView from '../index';
|
||||||
|
|
||||||
const history = createMemoryHistory();
|
// const history = createMemoryHistory();
|
||||||
|
|
||||||
describe('Admin | containers | ListView', () => {
|
describe('Admin | containers | ListView', () => {
|
||||||
it('should not crash', () => {
|
test.todo('should not crash');
|
||||||
shallow(
|
// it('should not crash', () => {
|
||||||
<IntlProvider
|
// shallow(
|
||||||
locale="en"
|
// <IntlProvider
|
||||||
defaultLocale="en"
|
// locale="en"
|
||||||
messages={translationMessages}
|
// defaultLocale="en"
|
||||||
textComponent="span"
|
// messages={translationMessages}
|
||||||
>
|
// textComponent="span"
|
||||||
<Notifications>
|
// >
|
||||||
<GlobalContextProvider formatMessage={jest.fn()}>
|
// <Notifications>
|
||||||
<Router history={history}>
|
// <GlobalContextProvider formatMessage={jest.fn()}>
|
||||||
<Switch>
|
// <Router history={history}>
|
||||||
<Route path="/settings/webhooks">
|
// <Switch>
|
||||||
<ListView />
|
// <Route path="/settings/webhooks">
|
||||||
</Route>
|
// <ListView />
|
||||||
</Switch>
|
// </Route>
|
||||||
</Router>
|
// </Switch>
|
||||||
</GlobalContextProvider>
|
// </Router>
|
||||||
</Notifications>
|
// </GlobalContextProvider>
|
||||||
</IntlProvider>
|
// </Notifications>
|
||||||
);
|
// </IntlProvider>
|
||||||
});
|
// );
|
||||||
|
// });
|
||||||
|
|
||||||
// FIXME
|
// FIXME
|
||||||
// afterEach(cleanup);
|
// afterEach(cleanup);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user