Skip to content

Commit 4ee3911

Browse files
committed
fix(Cypress): Add missing types post upgrade
This is currently breaking the build. The following PR upstream will make this redundant once shipped: cypress-io/cypress#19003
1 parent 24af0cf commit 4ee3911

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

cypress/support/global.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/// <reference types="cypress" />
2+
3+
declare namespace Cypress {
4+
interface Chainable<Subject = any> {
5+
browseTo: (masthead?: string, subMenu?: string, sidebar?: string) => void
6+
blockNewRelic: () => void
7+
}
8+
}

0 commit comments

Comments
 (0)