mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-10 04:22:06 +00:00
Added post list tests for blog profile page
This commit is contained in:
15
__mocks__/modules/gatsby-plugin-google-analytics.js
Normal file
15
__mocks__/modules/gatsby-plugin-google-analytics.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import React from 'react'
|
||||
import {onLinkClick} from 'gatsby-plugin-google-analytics';
|
||||
|
||||
afterEach(() => {
|
||||
onLinkClick.mockReset();
|
||||
})
|
||||
|
||||
jest.mock('gatsby-plugin-google-analytics', () => {
|
||||
const onLinkClick = jest.fn();
|
||||
|
||||
return {
|
||||
OutboundLink: (props) => <div onClick={onLinkClick}>{props.children}</div>,
|
||||
onLinkClick
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user