mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 14:59:14 +01:00
Fix tests.
This commit is contained in:
parent
ebc6134453
commit
488841cf47
@ -1,15 +1,27 @@
|
||||
// @flow strict
|
||||
import React from 'react';
|
||||
import renderer from 'react-test-renderer';
|
||||
import { useStaticQuery, StaticQuery } from 'gatsby';
|
||||
import siteMetadata from '../../../jest/__fixtures__/site-metadata';
|
||||
import Layout from './Layout';
|
||||
|
||||
describe('Layout', () => {
|
||||
const props = {
|
||||
...siteMetadata,
|
||||
children: 'test',
|
||||
description: 'test',
|
||||
title: 'test'
|
||||
};
|
||||
|
||||
beforeEach(() => {
|
||||
StaticQuery.mockImplementationOnce(
|
||||
({ render }: RenderCallback) => (
|
||||
render(props)
|
||||
),
|
||||
useStaticQuery.mockReturnValue(props)
|
||||
);
|
||||
});
|
||||
|
||||
it('renders correctly', () => {
|
||||
const tree = renderer.create(<Layout {...props} />).toJSON();
|
||||
expect(tree).toMatchSnapshot();
|
||||
|
Loading…
Reference in New Issue
Block a user