forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(gatsby-plugin-google-tagmanager): guard against dataLayer being u…
…ndefined in development (gatsbyjs#14437) * gatsby-plugin-google-tagmanager - Resolve gatsbyjs#14424 * test: add some unit tests validating the functionality
- Loading branch information
Showing
2 changed files
with
82 additions
and
5 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
packages/gatsby-plugin-google-tagmanager/src/__tests__/gatsby-browser.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
const getAPI = setup => { | ||
if (setup) { | ||
setup() | ||
} | ||
|
||
jest.resetModules() | ||
|
||
return require(`../gatsby-browser`) | ||
} | ||
|
||
beforeEach(() => { | ||
window.dataLayer = [] | ||
jest.useFakeTimers() | ||
process.env.NODE_ENV = undefined | ||
}) | ||
|
||
describe(`onRouteUpdate`, () => { | ||
it(`does not register if NODE_ENV is not production`, () => { | ||
const { onRouteUpdate } = getAPI(() => { | ||
process.env.NODE_ENV = `development` | ||
}) | ||
|
||
onRouteUpdate({}, {}) | ||
|
||
jest.runAllTimers() | ||
|
||
expect(window.dataLayer).toHaveLength(0) | ||
}) | ||
|
||
it(`registers a route change event`, () => { | ||
const { onRouteUpdate } = getAPI(() => { | ||
process.env.NODE_ENV = `production` | ||
}) | ||
|
||
onRouteUpdate({}, {}) | ||
|
||
jest.runAllTimers() | ||
|
||
expect(window.dataLayer).toEqual([ | ||
{ | ||
event: `gatsby-route-change`, | ||
}, | ||
]) | ||
}) | ||
|
||
it(`registers if NODE_ENV is production`, () => { | ||
const { onRouteUpdate } = getAPI(() => { | ||
process.env.NODE_ENV = `production` | ||
}) | ||
|
||
onRouteUpdate({}, {}) | ||
|
||
jest.runAllTimers() | ||
|
||
expect(window.dataLayer).toHaveLength(1) | ||
}) | ||
|
||
it(`registers if includeInDevelopment is true`, () => { | ||
const { onRouteUpdate } = getAPI(() => {}) | ||
|
||
onRouteUpdate( | ||
{}, | ||
{ | ||
includeInDevelopment: true, | ||
} | ||
) | ||
|
||
jest.runAllTimers() | ||
|
||
expect(window.dataLayer).toHaveLength(1) | ||
}) | ||
}) |
15 changes: 10 additions & 5 deletions
15
packages/gatsby-plugin-google-tagmanager/src/gatsby-browser.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
exports.onRouteUpdate = ({ location }) => { | ||
// wrap inside a timeout to ensure the title has properly been changed | ||
setTimeout(() => { | ||
window.dataLayer.push({ event: `gatsby-route-change` }) | ||
}, 50) | ||
exports.onRouteUpdate = (_, pluginOptions) => { | ||
if ( | ||
process.env.NODE_ENV === `production` || | ||
pluginOptions.includeInDevelopment | ||
) { | ||
// wrap inside a timeout to ensure the title has properly been changed | ||
setTimeout(() => { | ||
window.dataLayer.push({ event: `gatsby-route-change` }) | ||
}, 50) | ||
} | ||
} |