cypress 13.15.1 → 13.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/cli.js CHANGED
@@ -100,7 +100,7 @@ const descriptions = {
100
100
  env: 'sets environment variables. separate multiple values with a comma. overrides any value in cypress.config.{js,ts,mjs,cjs} or cypress.env.json',
101
101
  exit: 'keep the browser open after tests finish',
102
102
  forceInstall: 'force install the Cypress binary',
103
- global: 'force Cypress into global mode as if its globally installed',
103
+ global: 'force Cypress into global mode as if it were globally installed',
104
104
  group: 'a named group for recorded runs in Cypress Cloud',
105
105
  headed: 'displays the browser instead of running headlessly',
106
106
  headless: 'hide the browser instead of running headed (default for cypress run)',
package/lib/util.js CHANGED
@@ -9,7 +9,7 @@ const la = require('lazy-ass');
9
9
  const is = require('check-more-types');
10
10
  const tty = require('tty');
11
11
  const path = require('path');
12
- const isCi = require('is-ci');
12
+ const isCi = require('ci-info').isCI;
13
13
  const execa = require('execa');
14
14
  const getos = require('getos');
15
15
  const chalk = require('chalk');
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "13.15.1",
3
+ "version": "13.15.2",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
7
7
  "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
8
8
  },
9
9
  "dependencies": {
10
- "@cypress/request": "^3.0.4",
10
+ "@cypress/request": "^3.0.6",
11
11
  "@cypress/xvfb": "^1.2.4",
12
12
  "@types/sinonjs__fake-timers": "8.1.1",
13
13
  "@types/sizzle": "^2.3.2",
@@ -18,6 +18,7 @@
18
18
  "cachedir": "^2.3.0",
19
19
  "chalk": "^4.1.0",
20
20
  "check-more-types": "^2.24.0",
21
+ "ci-info": "^4.0.0",
21
22
  "cli-cursor": "^3.1.0",
22
23
  "cli-table3": "~0.6.1",
23
24
  "commander": "^6.2.1",
@@ -32,7 +33,6 @@
32
33
  "figures": "^3.2.0",
33
34
  "fs-extra": "^9.1.0",
34
35
  "getos": "^3.2.1",
35
- "is-ci": "^3.0.1",
36
36
  "is-installed-globally": "~0.4.0",
37
37
  "lazy-ass": "^1.6.0",
38
38
  "listr2": "^3.8.3",
@@ -141,8 +141,8 @@
141
141
  },
142
142
  "buildInfo": {
143
143
  "commitBranch": "develop",
144
- "commitSha": "199b1cd580d22fc412641f164e3ee6492f88e338",
145
- "commitDate": "2024-10-24T14:36:10.000Z",
144
+ "commitSha": "5caacc2f1a69a5faae85aadcc26353e5aebdb201",
145
+ "commitDate": "2024-11-05T20:33:30.000Z",
146
146
  "stable": true
147
147
  },
148
148
  "description": "Cypress is a next generation front end testing tool built for the modern web",