Skip to content

Instantly share code, notes, and snippets.

@Kjaer
Last active October 15, 2019 10:19
Show Gist options
  • Select an option

  • Save Kjaer/9d018c8458fc01acaaad5fbaf5969933 to your computer and use it in GitHub Desktop.

Select an option

Save Kjaer/9d018c8458fc01acaaad5fbaf5969933 to your computer and use it in GitHub Desktop.
"Setting up Jest and Enzyme for Typescript Next.js apps" post gists
import React from 'react';
import { mount } from 'enzyme';
test('hello world', () => {
 const wrapper = mount(<p>Hello Jest!</p>);
 expect(wrapper.text()).toMatch('Hello Jest!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment