Skip to content

Commit

Permalink
Remove leftover artifacts from before React revert
Browse files Browse the repository at this point in the history
  • Loading branch information
howard-e committed Feb 13, 2023
1 parent 817bcdb commit be7adaa
Show file tree
Hide file tree
Showing 3 changed files with 847 additions and 33 deletions.
2 changes: 0 additions & 2 deletions client/jest.setup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
const fetch = require('node-fetch');
const ResizeObserver = require('resize-observer-polyfill');

global.fetch = fetch;
global.ResizeObserver = require('resize-observer-polyfill')
6 changes: 5 additions & 1 deletion client/tests/App.test.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/

import React from 'react';
import Enzyme, { shallow } from 'enzyme';
import EnzymeAdapter from 'enzyme-adapter-react-16';
Expand All @@ -15,7 +19,7 @@ const setup = () => {
return wrapper;
};

test.skip('renders without crashing', () => {
test('renders without crashing', () => {
const wrapper = setup();
expect(wrapper).toBeTruthy();
});
Loading

0 comments on commit be7adaa

Please sign in to comment.