mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-15 17:45:31 +01:00
19 lines
557 B
TypeScript
19 lines
557 B
TypeScript
import '@testing-library/jest-dom/extend-expect'
|
|
|
|
import * as Gatsby from 'gatsby'
|
|
const useStaticQuery = jest.spyOn(Gatsby, 'useStaticQuery')
|
|
import meta from '../jest/__fixtures__/meta.json'
|
|
import avatar from '../jest/__fixtures__/avatar.json'
|
|
import posts from '../jest/__fixtures__/posts.json'
|
|
import github from '../jest/__fixtures__/github.json'
|
|
|
|
beforeAll(() => {
|
|
useStaticQuery.mockImplementation(() => ({
|
|
...meta,
|
|
...avatar,
|
|
logo: { edges: [{ node: { relativePath: 'apple-touch-icon.png' } }] },
|
|
...posts,
|
|
...github
|
|
}))
|
|
})
|