cypress 13.6.5 → 13.6.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -85,7 +85,10 @@ const runSmokeTest = (binaryDir, options) => {
85
85
  debug('smoke test command:', smokeTestCommand);
86
86
  debug('smoke test timeout %d ms', options.smokeTestTimeout);
87
87
  const stdioOptions = _.extend({}, {
88
- env: process.env,
88
+ env: {
89
+ ...process.env,
90
+ FORCE_COLOR: 0
91
+ },
89
92
  timeout: options.smokeTestTimeout
90
93
  });
91
94
  return Promise.resolve(util.exec(executable, args, stdioOptions)).catch(onSmokeTestError(smokeTestCommand, linuxWithDisplayEnv)).then(result => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "13.6.5",
3
+ "version": "13.6.6",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
@@ -134,8 +134,8 @@
134
134
  },
135
135
  "buildInfo": {
136
136
  "commitBranch": "develop",
137
- "commitSha": "3a8f83022866e260d2a588bc321f46818cc2a2b0",
138
- "commitDate": "2024-02-20T18:28:49.000Z",
137
+ "commitSha": "9dfb38f5747350957f6f92e5a9888dc239320964",
138
+ "commitDate": "2024-02-22T19:43:59.000Z",
139
139
  "stable": true
140
140
  },
141
141
  "description": "Cypress is a next generation front end testing tool built for the modern web",