Skip to content

Commit e327075

Browse files
committed
Merge branch 'master' of github.com:cypress-io/cypress-example-recipes into release/15.0.0
2 parents 62d3988 + 588178d commit e327075

File tree

3 files changed

+26
-18
lines changed

3 files changed

+26
-18
lines changed

examples/stubbing-spying__google-analytics/cypress/e2e/ga-method-stubbing.cy.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
// if you pop open your dev tools you will see that the network request
99
// for the script tag returns 503 because it's been blocked.
1010

11-
describe('Google Analytics', function () {
11+
// FIXME: this test is failing because GA is not actually firing the XHR events on send any longer. Cause needs to be investigated
12+
// @see https://github.com/cypress-io/cypress-example-recipes/issues/930
13+
describe.skip('Google Analytics', function () {
1214
// using a global event handler here because likely
1315
// in your real app you'll always want to stub window.ga
1416
//

examples/stubbing-spying__google-analytics/cypress/e2e/ga-network-stubbing.cy.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/// <reference types="cypress" />
2-
describe('Google Analytics', () => {
2+
// FIXME: this test is failing because GA is not actually firing the XHR events on send any longer. Cause needs to be investigated
3+
// @see https://github.com/cypress-io/cypress-example-recipes/issues/930
4+
describe.skip('Google Analytics', () => {
35
// we can arrange the intercepts to be in a particular order in each test
46
// by making small utility functions rather than using "beforeEach" hooks
57

package-lock.json

Lines changed: 20 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)