Skip to content

Instantly share code, notes, and snippets.

View kojinkai's full-sized avatar
🎯
Focusing

Lewis Nixon kojinkai

🎯
Focusing
  • Manchester, United Kingdom
View GitHub Profile
@kojinkai
kojinkai / testing_library_test_boilerplate.js
Last active February 14, 2020 09:35
Testing Boilerplate for a React Testing Library Test
import { render } from '@testing-library/react';
import React from 'react';
import Example from '../Example';
const defaultProps = {
someProp: 'someValue',
};
const setup = props => {
const propsWithDefaults = { ...defaultProps, ...props };