We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1fa8bd commit 754d384Copy full SHA for 754d384
src/__tests__/__snapshots__/app.spec.js.snap
@@ -0,0 +1,9 @@
1
+// Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+exports[`should take a snapshot 1`] = `
4
+<DocumentFragment>
5
+ <div>
6
+ Welcome to React Boilerplate!
7
+ </div>
8
+</DocumentFragment>
9
+`;
src/__tests__/app.spec.js
@@ -1,5 +1,5 @@
-import { render } from '@testing-library/react';
-import '@testing-library/jest-dom/extend-expect';
+import React from 'react';
+import { render } from 'test-utils';
import App from '../app.jsx';
it('should take a snapshot', () => {
0 commit comments