mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-15 01:25:25 +01:00
27 lines
492 B
JavaScript
27 lines
492 B
JavaScript
const React = require('react')
|
|
const gatsby = jest.requireActual('gatsby')
|
|
|
|
module.exports = {
|
|
...gatsby,
|
|
graphql: jest.fn(),
|
|
Link: jest.fn().mockImplementation(
|
|
// these props are invalid for an `a` tag
|
|
({
|
|
activeClassName,
|
|
activeStyle,
|
|
getProps,
|
|
innerRef,
|
|
ref,
|
|
replace,
|
|
to,
|
|
...rest
|
|
}) =>
|
|
React.createElement('a', {
|
|
...rest,
|
|
href: to
|
|
})
|
|
),
|
|
StaticQuery: jest.fn(),
|
|
useStaticQuery: jest.fn()
|
|
}
|