Skip to content

Commit be7adaa

Browse files
committed
Remove leftover artifacts from before React revert
1 parent 817bcdb commit be7adaa

File tree

3 files changed

+847
-33
lines changed

3 files changed

+847
-33
lines changed

client/jest.setup.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
const fetch = require('node-fetch');
2-
const ResizeObserver = require('resize-observer-polyfill');
32

43
global.fetch = fetch;
5-
global.ResizeObserver = require('resize-observer-polyfill')

client/tests/App.test.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @jest-environment jsdom
3+
*/
4+
15
import React from 'react';
26
import Enzyme, { shallow } from 'enzyme';
37
import EnzymeAdapter from 'enzyme-adapter-react-16';
@@ -15,7 +19,7 @@ const setup = () => {
1519
return wrapper;
1620
};
1721

18-
test.skip('renders without crashing', () => {
22+
test('renders without crashing', () => {
1923
const wrapper = setup();
2024
expect(wrapper).toBeTruthy();
2125
});

0 commit comments

Comments
 (0)