@wdio/jasmine-framework 8.23.0 → 8.23.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.
Files changed (2) hide show
  1. package/build/index.js +2 -2
  2. package/package.json +5 -5
package/build/index.js CHANGED
@@ -121,7 +121,7 @@ class JasmineAdapter {
121
121
  wrapGlobalTestMethod(isTest, isTest ? this._config.beforeTest : beforeHook, hookArgsFn, isTest ? this._config.afterTest : afterHook, hookArgsFn, fnName, this._cid);
122
122
  });
123
123
  /**
124
- * for a clean stdout we need to avoid that Jasmine initialises the
124
+ * for a clean stdout we need to avoid that Jasmine initializes the
125
125
  * default reporter
126
126
  */
127
127
  Jasmine.prototype.configureDefaultReporter = NOOP;
@@ -177,7 +177,7 @@ class JasmineAdapter {
177
177
  this._hasTests = this._totalTests > 0;
178
178
  }
179
179
  catch (err) {
180
- log.warn('Unable to load spec files quite likely because they rely on `browser` object that is not fully initialised.\n' +
180
+ log.warn('Unable to load spec files quite likely because they rely on `browser` object that is not fully initialized.\n' +
181
181
  '`browser` object has only `capabilities` and some flags like `isMobile`.\n' +
182
182
  'Helper files that use other `browser` commands have to be moved to `before` hook.\n' +
183
183
  `Spec file(s): ${this._specs.join(',')}\n`, 'Error: ', err);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/jasmine-framework",
3
- "version": "8.23.0",
3
+ "version": "8.23.2",
4
4
  "description": "A WebdriverIO plugin. Adapter for Jasmine testing framework.",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-jasmine-framework",
@@ -33,10 +33,10 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@types/node": "^20.1.0",
36
- "@wdio/globals": "8.23.0",
36
+ "@wdio/globals": "8.23.2",
37
37
  "@wdio/logger": "8.16.17",
38
- "@wdio/types": "8.23.0",
39
- "@wdio/utils": "8.23.0",
38
+ "@wdio/types": "8.23.1",
39
+ "@wdio/utils": "8.23.1",
40
40
  "expect-webdriverio": "^4.5.1",
41
41
  "jasmine": "^5.0.0"
42
42
  },
@@ -46,5 +46,5 @@
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "b17ce5f554deb8588cc156ad9676bd4bd13defe7"
49
+ "gitHead": "b0f0086ea01f3028228d449cef7b5dcdd853f08c"
50
50
  }