Skip to content

Commit ea01945

Browse files
authored
Merge pull request #428 from defencedigital/fix/add-missing-types-post-cypress-bump
fix(Cypress): Add missing types post upgrade
2 parents 24af0cf + 4ee3911 commit ea01945

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)