@wdio/cli 8.0.10 → 8.0.12

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.
@@ -3,7 +3,7 @@ import chalk, { supportsColor } from 'chalk';
3
3
  import logger from '@wdio/logger';
4
4
  import { getRunnerName } from './utils.js';
5
5
  const log = logger('@wdio/cli');
6
- const EVENT_FILTER = ['sessionStarted', 'sessionEnded', 'finishedCommand'];
6
+ const EVENT_FILTER = ['sessionStarted', 'sessionEnded', 'finishedCommand', 'ready'];
7
7
  export default class WDIOCLInterface extends EventEmitter {
8
8
  _config;
9
9
  totalWorkerCnt;
package/build/utils.js CHANGED
@@ -406,7 +406,7 @@ export async function getAnswers(yes) {
406
406
  * in case create-wdio was used which creates a package.json with name "my-new-project"
407
407
  * we don't need to ask this question
408
408
  */
409
- : projectName !== 'my-new-project'
409
+ : projectProps?.packageJson?.name !== 'my-new-project'
410
410
  ? [{
411
411
  type: 'confirm',
412
412
  name: 'projectRootCorrect',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/cli",
3
- "version": "8.0.10",
3
+ "version": "8.0.12",
4
4
  "description": "WebdriverIO testrunner command line interface",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-cli",
@@ -40,12 +40,12 @@
40
40
  "@types/lodash.union": "^4.6.7",
41
41
  "@types/recursive-readdir": "^2.2.1",
42
42
  "@types/yargs": "^17.0.10",
43
- "@wdio/config": "8.0.10",
44
- "@wdio/globals": "8.0.10",
43
+ "@wdio/config": "8.0.11",
44
+ "@wdio/globals": "8.0.12",
45
45
  "@wdio/logger": "8.0.0",
46
46
  "@wdio/protocols": "8.0.0",
47
- "@wdio/types": "8.0.10",
48
- "@wdio/utils": "8.0.10",
47
+ "@wdio/types": "8.0.11",
48
+ "@wdio/utils": "8.0.11",
49
49
  "async-exit-hook": "^2.0.1",
50
50
  "chalk": "^5.0.1",
51
51
  "chokidar": "^3.5.3",
@@ -59,7 +59,7 @@
59
59
  "mkdirp": "^1.0.4",
60
60
  "read-pkg-up": "9.1.0",
61
61
  "recursive-readdir": "^2.2.2",
62
- "webdriverio": "8.0.10",
62
+ "webdriverio": "8.0.12",
63
63
  "yargs": "^17.5.1",
64
64
  "yarn-install": "^1.0.0"
65
65
  },
@@ -69,5 +69,5 @@
69
69
  "devDependencies": {
70
70
  "@types/node": "^18.0.0"
71
71
  },
72
- "gitHead": "1c350a14144ecc5f1ebc598c385bae6aa80739c3"
72
+ "gitHead": "2d97efe9eb605cb1858792e2ff8309f5ca77c60a"
73
73
  }