correct sort order of css properties

mocking of fetch api only once in setupTests
This commit is contained in:
2020-08-05 17:55:51 +00:00
parent 748f0410de
commit f80554bfdd
26 changed files with 155 additions and 195 deletions

View File

@@ -2,14 +2,6 @@ import React from 'react';
import App from './App';
import {shallow} from 'enzyme'
function prepareFetchApi(response) {
const mockJsonPromise = Promise.resolve(response);
const mockFetchPromise = Promise.resolve({
json: () => mockJsonPromise,
});
return (jest.fn().mockImplementation(() => mockFetchPromise));
}
describe('<App/>', function () {
it('renders without crashing ', function () {
const wrapper = shallow(<App/>);
@@ -92,7 +84,7 @@ describe('<App/>', function () {
});
it('test initial fetch from api', done => {
global.fetch = prepareFetchApi({
global.fetch = global.prepareFetchApi({
generalSettingsLoaded: true,
passwordsupport: true,
mediacentername: "testname"