Merge branch 'core/admin-config' of github.com:strapi/strapi into core/notification-api

This commit is contained in:
soupette 2021-05-06 11:09:16 +02:00
commit d6c1016859

View File

@ -0,0 +1,10 @@
import { render } from '@testing-library/react';
import StrapiApp from '../StrapiApp';
describe('ADMIN | StrapiApp', () => {
it('should render the app without plugins', () => {
const app = StrapiApp({});
render(app.render());
});
});