Skip to content

Commit

Permalink
build: fix the type library reference
Browse files Browse the repository at this point in the history
fix #481
  • Loading branch information
NoriSte committed Jul 16, 2024
1 parent cfa0fe2 commit 32a709f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/plugin.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference types="Cypress" />
/// <reference types="cypress" />

context('Cypress Wait Until', () => {
beforeEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/types/plugin.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference types="Cypress" />
/// <reference types="cypress" />

cy.waitUntil(() => true)
cy.waitUntil(() => Promise.resolve(true))
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference types="Cypress" />
/// <reference types="cypress" />

type WaitUntilLog = Pick<Cypress.LogConfig, 'name' | 'message' | 'consoleProps'>

Expand Down

0 comments on commit 32a709f

Please sign in to comment.