-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HAAR-128: upgrade dependences #23
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"low": true, | ||
"package-manager": "auto", | ||
"registry": "https://registry.npmjs.org", | ||
"allowlist": [1006724] | ||
"registry": "https://registry.npmjs.org" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ declare namespace Cypress { | |
/** * Custom command to signIn. Set failOnStatusCode to false if you expect and non 200 return code | ||
* @example cy.signIn({ failOnStatusCode: boolean }) | ||
*/ | ||
signIn<S = unknown>(options?: { failOnStatusCode: false }): Chainable<S> | ||
signIn<S = unknown>(options?: { failOnStatusCode: boolean }): Chainable<S> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doesn't this mean we are no longer defaulting to false? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a good point. I changed it because npm typecheck was complaining - I assumed this was being flagged because this PR bumped We hadn't provided a type for And I don't think it's possible to provide a default value because it's a function on an interface There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just checked the template project and it uses 4.5.5 but was able to keep index.d.ts as it was - very odd, maybe they didn't see the warning |
||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added in #12 but can remove now