@wdio/cucumber-framework 8.16.4 → 8.16.6
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/build/constants.d.ts +0 -1
- package/build/constants.d.ts.map +1 -1
- package/build/constants.js +1 -6
- package/build/index.d.ts +3 -1
- package/build/index.d.ts.map +1 -1
- package/build/index.js +17 -3
- package/build/types.d.ts +1 -1
- package/build/types.d.ts.map +1 -1
- package/package.json +3 -3
package/build/constants.d.ts
CHANGED
package/build/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAEjD,eAAO,MAAM,eAAe,QAAQ,CAAA;AAEpC,eAAO,MAAM,YAAY,EAAE,eA0B1B,CAAA"}
|
package/build/constants.js
CHANGED
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
import url from 'node:url';
|
|
2
|
-
import path from 'node:path';
|
|
3
1
|
export const DEFAULT_TIMEOUT = 60000;
|
|
4
|
-
export const FILE_PROTOCOL = 'file://';
|
|
5
|
-
const cucumberFormatter = path.resolve(url.fileURLToPath(import.meta.url), '../cucumberFormatter.js');
|
|
6
|
-
const isWindows = process.platform === 'win32';
|
|
7
2
|
export const DEFAULT_OPTS = {
|
|
8
3
|
paths: [],
|
|
9
4
|
backtrace: false,
|
|
10
5
|
dryRun: false,
|
|
11
6
|
forceExit: false,
|
|
12
7
|
failFast: false,
|
|
13
|
-
format: [
|
|
8
|
+
format: [],
|
|
14
9
|
formatOptions: {},
|
|
15
10
|
import: [],
|
|
16
11
|
language: 'en',
|
package/build/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import type { CucumberOptions, HookFunctionExtension as HookFunctionExtensionImp
|
|
|
5
5
|
import type { GherkinDocument } from '@cucumber/messages';
|
|
6
6
|
import type { Capabilities, Options } from '@wdio/types';
|
|
7
7
|
import type { SupportCodeLibraryBuilder } from '@cucumber/cucumber/lib/support_code_library_builder/index.js';
|
|
8
|
+
export declare const FILE_PROTOCOL = "file://";
|
|
8
9
|
declare const After: (<WorldType = Cucumber.IWorld<any>>(code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestCaseHookFunction<WorldType>) => void) & (<WorldType_1 = Cucumber.IWorld<any>>(tags: string, code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestCaseHookFunction<WorldType_1>) => void) & (<WorldType_2 = Cucumber.IWorld<any>>(options: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineTestCaseHookOptions, code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestCaseHookFunction<WorldType_2>) => void), AfterAll: ((code: Function) => void) & ((options: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineTestRunHookOptions, code: Function) => void), AfterStep: (<WorldType = Cucumber.IWorld<any>>(code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestStepHookFunction<WorldType>) => void) & (<WorldType_1 = Cucumber.IWorld<any>>(tags: string, code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestStepHookFunction<WorldType_1>) => void) & (<WorldType_2 = Cucumber.IWorld<any>>(options: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineTestStepHookOptions, code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestStepHookFunction<WorldType_2>) => void), Before: (<WorldType = Cucumber.IWorld<any>>(code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestCaseHookFunction<WorldType>) => void) & (<WorldType_1 = Cucumber.IWorld<any>>(tags: string, code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestCaseHookFunction<WorldType_1>) => void) & (<WorldType_2 = Cucumber.IWorld<any>>(options: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineTestCaseHookOptions, code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestCaseHookFunction<WorldType_2>) => void), BeforeAll: ((code: Function) => void) & ((options: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineTestRunHookOptions, code: Function) => void), BeforeStep: (<WorldType = Cucumber.IWorld<any>>(code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestStepHookFunction<WorldType>) => void) & (<WorldType_1 = Cucumber.IWorld<any>>(tags: string, code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestStepHookFunction<WorldType_1>) => void) & (<WorldType_2 = Cucumber.IWorld<any>>(options: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineTestStepHookOptions, code: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").TestStepHookFunction<WorldType_2>) => void), Given: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineStep, When: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineStep, Then: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineStep, DataTable: typeof Cucumber.DataTable, World: typeof Cucumber.World, setDefaultTimeout: (milliseconds: number) => void, setDefinitionFunctionWrapper: (fn: Function) => void, setWorldConstructor: (fn: any) => void, defineParameterType: (options: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IParameterTypeDefinition<any>) => void, defineStep: import("@cucumber/cucumber/lib/support_code_library_builder/types.js").IDefineStep;
|
|
9
10
|
declare class CucumberAdapter {
|
|
10
11
|
private _cid;
|
|
@@ -14,12 +15,13 @@ declare class CucumberAdapter {
|
|
|
14
15
|
private _reporter;
|
|
15
16
|
private _eventEmitter;
|
|
16
17
|
private _generateSkipTags;
|
|
18
|
+
private _cucumberFormatter;
|
|
17
19
|
private _cwd;
|
|
18
20
|
private _newId;
|
|
19
21
|
private _cucumberOpts;
|
|
20
22
|
private _hasTests;
|
|
21
23
|
private gherkinParser;
|
|
22
|
-
constructor(_cid: string, _config: Options.Testrunner, _specs: string[], _capabilities: Capabilities.RemoteCapability, _reporter: EventEmitter, _eventEmitter: EventEmitter, _generateSkipTags?: boolean);
|
|
24
|
+
constructor(_cid: string, _config: Options.Testrunner, _specs: string[], _capabilities: Capabilities.RemoteCapability, _reporter: EventEmitter, _eventEmitter: EventEmitter, _generateSkipTags?: boolean, _cucumberFormatter?: string);
|
|
23
25
|
readFiles(filePaths?: Options.Testrunner['specs']): (string | string[])[];
|
|
24
26
|
getGherkinDocuments(files?: Options.Testrunner['specs']): (GherkinDocument | GherkinDocument[])[];
|
|
25
27
|
filterSpecsByTagExpression(specs?: Options.Testrunner['specs'], tagExpression?: string): typeof specs;
|
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAO1C,OAAO,KAAK,QAAQ,MAAM,oBAAoB,CAAA;AAQ9C,OAAO,KAAK,EACR,eAAe,EACf,qBAAqB,IAAI,2BAA2B,EAEvD,MAAM,YAAY,CAAA;AACnB,OAAO,KAAK,EAAW,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAElE,OAAO,KAAK,EAAE,YAAY,EAAE,OAAO,EAAc,MAAM,aAAa,CAAA;AASpE,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,8DAA8D,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/build/index.js
CHANGED
|
@@ -12,9 +12,10 @@ import * as Cucumber from '@cucumber/cucumber';
|
|
|
12
12
|
import Gherkin from '@cucumber/gherkin';
|
|
13
13
|
import { IdGenerator } from '@cucumber/messages';
|
|
14
14
|
import TagExpressionParser from '@cucumber/tag-expressions';
|
|
15
|
-
import { DEFAULT_OPTS
|
|
15
|
+
import { DEFAULT_OPTS } from './constants.js';
|
|
16
16
|
import { generateSkipTagsFromCapabilities, shouldRun } from './utils.js';
|
|
17
17
|
import { loadConfiguration, runCucumber } from '@cucumber/cucumber/api';
|
|
18
|
+
export const FILE_PROTOCOL = 'file://';
|
|
18
19
|
const log = logger('@wdio/cucumber-framework');
|
|
19
20
|
const { After, AfterAll, AfterStep, Before, BeforeAll, BeforeStep, Given, When, Then, DataTable, World, Status, setDefaultTimeout, setDefinitionFunctionWrapper, setWorldConstructor, defineParameterType, defineStep, supportCodeLibraryBuilder, } = Cucumber;
|
|
20
21
|
const uuidFn = IdGenerator.uuid();
|
|
@@ -36,12 +37,13 @@ class CucumberAdapter {
|
|
|
36
37
|
_reporter;
|
|
37
38
|
_eventEmitter;
|
|
38
39
|
_generateSkipTags;
|
|
40
|
+
_cucumberFormatter;
|
|
39
41
|
_cwd = process.cwd();
|
|
40
42
|
_newId = incrementing();
|
|
41
43
|
_cucumberOpts;
|
|
42
44
|
_hasTests = true;
|
|
43
45
|
gherkinParser;
|
|
44
|
-
constructor(_cid, _config, _specs, _capabilities, _reporter, _eventEmitter, _generateSkipTags = true) {
|
|
46
|
+
constructor(_cid, _config, _specs, _capabilities, _reporter, _eventEmitter, _generateSkipTags = true, _cucumberFormatter = url.pathToFileURL(path.resolve(url.fileURLToPath(import.meta.url), '..', 'cucumberFormatter.js')).href) {
|
|
45
47
|
this._cid = _cid;
|
|
46
48
|
this._config = _config;
|
|
47
49
|
this._specs = _specs;
|
|
@@ -49,6 +51,7 @@ class CucumberAdapter {
|
|
|
49
51
|
this._reporter = _reporter;
|
|
50
52
|
this._eventEmitter = _eventEmitter;
|
|
51
53
|
this._generateSkipTags = _generateSkipTags;
|
|
54
|
+
this._cucumberFormatter = _cucumberFormatter;
|
|
52
55
|
this._eventEmitter = new EventEmitter();
|
|
53
56
|
this._cucumberOpts = Object.assign({}, DEFAULT_OPTS, this._config.cucumberOpts);
|
|
54
57
|
/**
|
|
@@ -57,6 +60,13 @@ class CucumberAdapter {
|
|
|
57
60
|
if (this._config.cucumberOpts?.parallel) {
|
|
58
61
|
throw new Error('The option "parallel" is not supported by WebdriverIO');
|
|
59
62
|
}
|
|
63
|
+
/**
|
|
64
|
+
* Including the `cucumberFormatter` here allows you to use cucumber formatting in addition to other formatting options.
|
|
65
|
+
*/
|
|
66
|
+
this._cucumberOpts.format.push([this._cucumberFormatter]);
|
|
67
|
+
/**
|
|
68
|
+
* formatting options used by custom cucumberFormatter
|
|
69
|
+
*/
|
|
60
70
|
this._cucumberOpts.formatOptions = {
|
|
61
71
|
_reporter: this._reporter,
|
|
62
72
|
_cid: this._cid,
|
|
@@ -162,7 +172,11 @@ class CucumberAdapter {
|
|
|
162
172
|
let outStream;
|
|
163
173
|
try {
|
|
164
174
|
await this.registerRequiredModules();
|
|
165
|
-
supportCodeLibraryBuilder.reset(this._cwd, this._newId
|
|
175
|
+
supportCodeLibraryBuilder.reset(this._cwd, this._newId, {
|
|
176
|
+
requireModules: this._cucumberOpts.requireModule,
|
|
177
|
+
requirePaths: this._cucumberOpts.require,
|
|
178
|
+
importPaths: this._cucumberOpts.import,
|
|
179
|
+
});
|
|
166
180
|
this.addWdioHooksAndWrapSteps(this._config, supportCodeLibraryBuilder);
|
|
167
181
|
setDefaultTimeout(this._cucumberOpts.timeout);
|
|
168
182
|
await this.loadFiles();
|
package/build/types.d.ts
CHANGED
package/build/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAA;AAChE,OAAO,KAAK,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAE/E,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAE7C,MAAM,WAAW,eAAe;IAC5B;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/cucumber-framework",
|
|
3
|
-
"version": "8.16.
|
|
3
|
+
"version": "8.16.6",
|
|
4
4
|
"description": "A WebdriverIO plugin. Adapter for Cucumber.js testing framework.",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-cucumber-framework",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"types": "./build/index.d.ts",
|
|
39
39
|
"typeScriptVersion": "3.8.3",
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@cucumber/cucumber": "9.
|
|
41
|
+
"@cucumber/cucumber": "9.5.1",
|
|
42
42
|
"@cucumber/gherkin": "26.2.0",
|
|
43
43
|
"@cucumber/messages": "22.0.0",
|
|
44
44
|
"@cucumber/tag-expressions": "5.0.6",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "aa35c291fb496b80350766d674385ea7b4d1516a"
|
|
59
59
|
}
|