Skip to content

Commit

Permalink
chore: patch cli @types/sinon to fix issue with TS 4.3 linting (#28676)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbreiding authored Jan 10, 2024
1 parent ec89901 commit aeb5f14
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions cli/patches/@types+sinon+9.0.9.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/node_modules/@types/sinon/index.d.ts b/node_modules/@types/sinon/index.d.ts
index 07ba706..fd32cbe 100644
--- a/node_modules/@types/sinon/index.d.ts
+++ b/node_modules/@types/sinon/index.d.ts
@@ -45,7 +45,7 @@ declare namespace Sinon {
* so a call that received the provided arguments (in the same spots) and possibly others as well will return true.
* @param args
*/
- calledWith(...args: Partial<MatchArguments<TArgs>>): boolean;
+ calledWith(...args: Partial<MatchArguments<TArgs>>[]): boolean;
/**
* Returns true if spy was called at least once with the provided arguments and no others.
*/

4 comments on commit aeb5f14

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on aeb5f14 Jan 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.6.3/linux-x64/develop-aeb5f146b0a20f5eb61c56e453ecf27aebca7ee3/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on aeb5f14 Jan 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.6.3/linux-arm64/develop-aeb5f146b0a20f5eb61c56e453ecf27aebca7ee3/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on aeb5f14 Jan 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.6.3/darwin-x64/develop-aeb5f146b0a20f5eb61c56e453ecf27aebca7ee3/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on aeb5f14 Jan 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.6.3/darwin-arm64/develop-aeb5f146b0a20f5eb61c56e453ecf27aebca7ee3/cypress.tgz

Please sign in to comment.