Skip to content

Commit

Permalink
fix Cypress namespace missing issue. see 6d7ba97
Browse files Browse the repository at this point in the history
  • Loading branch information
AtofStryker committed Oct 7, 2024
1 parent 7bca33d commit 4f3804d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/types/src/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export interface SpecFile extends BaseSpec {
export interface FoundSpec extends SpecFile {
specFileExtension: string
fileExtension: string
specType: Cypress.CypressSpecType
// see: ./cli/types/cypress.d.ts `Cypress.CypressSpecType`
specType: 'integration' | 'component'
}

export interface SpecWithRelativeRoot extends FoundSpec {
Expand Down

0 comments on commit 4f3804d

Please sign in to comment.