@wdio/browser-runner 9.6.0 → 9.6.3

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.
@@ -20773,4 +20773,3 @@
20773
20773
  return browserEntry;
20774
20774
 
20775
20775
  }));
20776
- //# sourceMappingURL=mocha.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/browser-runner",
3
- "version": "9.6.0",
3
+ "version": "9.6.3",
4
4
  "description": "A WebdriverIO runner to run unit tests tests in the browser.",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-browser-runner",
@@ -61,20 +61,24 @@
61
61
  }
62
62
  },
63
63
  "scripts": {
64
- "build": "mkdir -p ./build/third_party && cp ./node_modules/mocha/mocha.css ./build/third_party/mocha.css && cp ./node_modules/mocha/mocha.js ./build/third_party/mocha.js"
64
+ "build": "run-s build:*",
65
+ "build:mkdir": "mkdir -p ./build/third_party",
66
+ "build:copy": "run-p build:copy:*",
67
+ "build:copy:css": "cp ./node_modules/mocha/mocha.css ./build/third_party/mocha.css",
68
+ "build:copy:js": "sed '$d' ./node_modules/mocha/mocha.js > ./build/third_party/mocha.js"
65
69
  },
66
70
  "typeScriptVersion": "3.8.3",
67
71
  "dependencies": {
68
72
  "@originjs/vite-plugin-commonjs": "^1.0.3",
69
73
  "@vitest/spy": "^2.0.4",
70
- "@wdio/globals": "9.6.0",
71
- "@wdio/local-runner": "9.6.0",
74
+ "@wdio/globals": "9.6.3",
75
+ "@wdio/local-runner": "9.6.3",
72
76
  "@wdio/logger": "9.4.4",
73
- "@wdio/mocha-framework": "9.5.0",
77
+ "@wdio/mocha-framework": "9.6.3",
74
78
  "@wdio/protocols": "9.4.4",
75
- "@wdio/runner": "9.6.0",
76
- "@wdio/types": "9.5.0",
77
- "@wdio/utils": "9.5.0",
79
+ "@wdio/runner": "9.6.3",
80
+ "@wdio/types": "9.6.3",
81
+ "@wdio/utils": "9.6.3",
78
82
  "deepmerge-ts": "^7.0.3",
79
83
  "expect": "30.0.0-alpha.6",
80
84
  "expect-webdriverio": "^5.0.1",
@@ -92,8 +96,8 @@
92
96
  "vite": "^5.4.10",
93
97
  "vite-plugin-istanbul": "^6.0.0",
94
98
  "vite-plugin-top-level-await": "^1.4.1",
95
- "webdriver": "9.6.0",
96
- "webdriverio": "9.6.0"
99
+ "webdriver": "9.6.3",
100
+ "webdriverio": "9.6.3"
97
101
  },
98
102
  "devDependencies": {
99
103
  "@types/istanbul-lib-coverage": "^2.0.6",
@@ -112,5 +116,5 @@
112
116
  "publishConfig": {
113
117
  "access": "public"
114
118
  },
115
- "gitHead": "bea75d896564c2285012cd7c77948dce6ab45804"
119
+ "gitHead": "b3371191bb85dba78b26c1640d19e5a42aff755c"
116
120
  }