Skip to content

Commit

Permalink
chore: fix typo (#8452)
Browse files Browse the repository at this point in the history
Addendum to c378960 (#4176)
  • Loading branch information
Saibamen committed Aug 31, 2020
1 parent 15fdf12 commit c0ab5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/net-stubbing/lib/server/intercept-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const debug = Debug('cypress:net-stubbing:server:intercept-request')
/**
* Returns `true` if `req` matches all supplied properties on `routeMatcher`, `false` otherwise.
*/
// TOOD: optimize to short-circuit on route not match
// TODO: optimize to short-circuit on route not match
export function _doesRouteMatch (routeMatcher: RouteMatcherOptions, req: CypressIncomingRequest) {
const matchable = _getMatchableForRequest(req)

Expand Down

4 comments on commit c0ab5c8

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on c0ab5c8 Aug 31, 2020

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.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.1.0/linux-x64/circle-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-435241/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.1.0/circle-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-435217/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on c0ab5c8 Aug 31, 2020

Choose a reason for hiding this comment

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

AppVeyor has built the win32 ia32 version of the Test Runner.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

Instructions are included below, depending on the shell you are using.

In Command Prompt (cmd.exe):

set CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.1.0/win32-ia32/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.1.0/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.tgz

In PowerShell:

$env:CYPRESS_INSTALL_BINARY = https://cdn.cypress.io/beta/binary/5.1.0/win32-ia32/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.1.0/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.tgz

In Git Bash:

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.1.0/win32-ia32/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.1.0/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.tgz

Using cross-env:

If the above commands do not work for you, you can also try using cross-env:

npm i -g cross-env
cross-env CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.1.0/win32-ia32/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.zip npm install https://cdn.cypress.io/beta/npm/5.1.0/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on c0ab5c8 Aug 31, 2020

Choose a reason for hiding this comment

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

AppVeyor has built the win32 x64 version of the Test Runner.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

Instructions are included below, depending on the shell you are using.

In Command Prompt (cmd.exe):

set CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.1.0/win32-x64/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.1.0/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.tgz

In PowerShell:

$env:CYPRESS_INSTALL_BINARY = https://cdn.cypress.io/beta/binary/5.1.0/win32-x64/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.1.0/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.tgz

In Git Bash:

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.1.0/win32-x64/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.1.0/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.tgz

Using cross-env:

If the above commands do not work for you, you can also try using cross-env:

npm i -g cross-env
cross-env CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.1.0/win32-x64/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.zip npm install https://cdn.cypress.io/beta/npm/5.1.0/appveyor-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-34949881/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on c0ab5c8 Aug 31, 2020

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.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.1.0/darwin-x64/circle-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-435357/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.1.0/circle-develop-c0ab5c80ac170c71f2957d924512d2203e455d76-435223/cypress.tgz

Please sign in to comment.