mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-27 07:18:17 +01:00
11 lines
163 B
JavaScript
11 lines
163 B
JavaScript
'use strict';
|
|
|
|
const gatsby = jest.requireActual('gatsby');
|
|
|
|
module.exports = {
|
|
...gatsby,
|
|
graphql: jest.fn(),
|
|
Link: 'Link',
|
|
StaticQuery: 'StaticQuery'
|
|
};
|