mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-28 15:58:33 +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'
|
||
|
};
|