@uuv/runner-commons 2.8.1 → 2.9.0
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/CHANGELOG.md +14 -0
- package/dist/step-definition-generator/common.d.ts +12 -13
- package/dist/step-definition-generator/common.js +12 -13
- package/dist/step-definition-generator/generate-base-step-definitions.js +11 -10
- package/dist/step-definition-generator/generate-based-role-step-definitions.d.ts +12 -13
- package/dist/step-definition-generator/generate-based-role-step-definitions.js +12 -13
- package/dist/step-definition-generator/generate-step-definitions-documentation.d.ts +12 -13
- package/dist/step-definition-generator/generate-step-definitions-documentation.js +12 -13
- package/dist/step-definition-generator/generate-step-definitions.d.ts +12 -13
- package/dist/step-definition-generator/generate-step-definitions.js +12 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [2.9.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.8.2...runner-commons-v2.9.0) (2024-03-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **deps:** update node.js to v20 ([f771f22](https://github.com/Orange-OpenSource/uuv/commit/f771f22197d7efc32bba6f8a345b5f6b2f3dd114))
|
|
7
|
+
|
|
8
|
+
## [2.8.2](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.8.1...runner-commons-v2.8.2) (2024-03-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **runner-cypress:** update dependency @cypress/webpack-preprocessor to v6 ([2e9a52b](https://github.com/Orange-OpenSource/uuv/commit/2e9a52b2cc1bfb05e96c212cdec0fd644f41d02b))
|
|
14
|
+
|
|
1
15
|
## [2.8.1](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.8.0...runner-commons-v2.8.1) (2024-03-10)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Software Name : UUV
|
|
3
|
-
*
|
|
4
|
-
* SPDX-FileCopyrightText: Copyright (c)
|
|
5
|
-
* SPDX-License-Identifier: MIT
|
|
6
|
-
*
|
|
7
|
-
* This software is distributed under the MIT License,
|
|
8
|
-
* the
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
*/
|
|
2
|
+
* Software Name : UUV
|
|
3
|
+
*
|
|
4
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
5
|
+
* SPDX-License-Identifier: MIT
|
|
6
|
+
*
|
|
7
|
+
* This software is distributed under the MIT License,
|
|
8
|
+
* see the "LICENSE" file for more details
|
|
9
|
+
*
|
|
10
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
11
|
+
* Software description: Make test writing fast, understandable by any human
|
|
12
|
+
* understanding English or French.
|
|
13
|
+
*/
|
|
15
14
|
import fs from "fs";
|
|
16
15
|
import { AccessibleRole } from "./accessible-role";
|
|
17
16
|
export { fs };
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Software Name : UUV
|
|
4
|
-
*
|
|
5
|
-
* SPDX-FileCopyrightText: Copyright (c)
|
|
6
|
-
* SPDX-License-Identifier: MIT
|
|
7
|
-
*
|
|
8
|
-
* This software is distributed under the MIT License,
|
|
9
|
-
* the
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
*/
|
|
3
|
+
* Software Name : UUV
|
|
4
|
+
*
|
|
5
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
6
|
+
* SPDX-License-Identifier: MIT
|
|
7
|
+
*
|
|
8
|
+
* This software is distributed under the MIT License,
|
|
9
|
+
* see the "LICENSE" file for more details
|
|
10
|
+
*
|
|
11
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
12
|
+
* Software description: Make test writing fast, understandable by any human
|
|
13
|
+
* understanding English or French.
|
|
14
|
+
*/
|
|
16
15
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17
16
|
if (k2 === undefined) k2 = k;
|
|
18
17
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -25,16 +25,17 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.BaseStepDefinition = void 0;
|
|
27
27
|
/**
|
|
28
|
-
* Software Name : UUV
|
|
29
|
-
*
|
|
30
|
-
* SPDX-
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
37
|
-
* Software description: Make test writing fast, understandable by any human
|
|
28
|
+
* Software Name : UUV
|
|
29
|
+
*
|
|
30
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
31
|
+
* SPDX-License-Identifier: MIT
|
|
32
|
+
*
|
|
33
|
+
* This software is distributed under the MIT License,
|
|
34
|
+
* see the "LICENSE" file for more details
|
|
35
|
+
*
|
|
36
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
37
|
+
* Software description: Make test writing fast, understandable by any human
|
|
38
|
+
* understanding English or French.
|
|
38
39
|
*/
|
|
39
40
|
const lang_enum_1 = require("./lang-enum");
|
|
40
41
|
const common_1 = require("./common");
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Software Name : UUV
|
|
3
|
-
*
|
|
4
|
-
* SPDX-FileCopyrightText: Copyright (c)
|
|
5
|
-
* SPDX-License-Identifier: MIT
|
|
6
|
-
*
|
|
7
|
-
* This software is distributed under the MIT License,
|
|
8
|
-
* the
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
*/
|
|
2
|
+
* Software Name : UUV
|
|
3
|
+
*
|
|
4
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
5
|
+
* SPDX-License-Identifier: MIT
|
|
6
|
+
*
|
|
7
|
+
* This software is distributed under the MIT License,
|
|
8
|
+
* see the "LICENSE" file for more details
|
|
9
|
+
*
|
|
10
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
11
|
+
* Software description: Make test writing fast, understandable by any human
|
|
12
|
+
* understanding English or French.
|
|
13
|
+
*/
|
|
15
14
|
import { GenerateFileProcessing } from "./common";
|
|
16
15
|
import { AccessibleRole } from "./accessible-role";
|
|
17
16
|
export declare class BasedRoleStepDefinition extends GenerateFileProcessing {
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Software Name : UUV
|
|
4
|
-
*
|
|
5
|
-
* SPDX-FileCopyrightText: Copyright (c)
|
|
6
|
-
* SPDX-License-Identifier: MIT
|
|
7
|
-
*
|
|
8
|
-
* This software is distributed under the MIT License,
|
|
9
|
-
* the
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
*/
|
|
3
|
+
* Software Name : UUV
|
|
4
|
+
*
|
|
5
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
6
|
+
* SPDX-License-Identifier: MIT
|
|
7
|
+
*
|
|
8
|
+
* This software is distributed under the MIT License,
|
|
9
|
+
* see the "LICENSE" file for more details
|
|
10
|
+
*
|
|
11
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
12
|
+
* Software description: Make test writing fast, understandable by any human
|
|
13
|
+
* understanding English or French.
|
|
14
|
+
*/
|
|
16
15
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17
16
|
if (k2 === undefined) k2 = k;
|
|
18
17
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Software Name : UUV
|
|
3
|
-
*
|
|
4
|
-
* SPDX-FileCopyrightText: Copyright (c)
|
|
5
|
-
* SPDX-License-Identifier: MIT
|
|
6
|
-
*
|
|
7
|
-
* This software is distributed under the MIT License,
|
|
8
|
-
* the
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
*/
|
|
2
|
+
* Software Name : UUV
|
|
3
|
+
*
|
|
4
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
5
|
+
* SPDX-License-Identifier: MIT
|
|
6
|
+
*
|
|
7
|
+
* This software is distributed under the MIT License,
|
|
8
|
+
* see the "LICENSE" file for more details
|
|
9
|
+
*
|
|
10
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
11
|
+
* Software description: Make test writing fast, understandable by any human
|
|
12
|
+
* understanding English or French.
|
|
13
|
+
*/
|
|
15
14
|
export declare class AutocompletionSuggestion {
|
|
16
15
|
suggestion: string;
|
|
17
16
|
link: string;
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Software Name : UUV
|
|
4
|
-
*
|
|
5
|
-
* SPDX-FileCopyrightText: Copyright (c)
|
|
6
|
-
* SPDX-License-Identifier: MIT
|
|
7
|
-
*
|
|
8
|
-
* This software is distributed under the MIT License,
|
|
9
|
-
* the
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
*/
|
|
3
|
+
* Software Name : UUV
|
|
4
|
+
*
|
|
5
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
6
|
+
* SPDX-License-Identifier: MIT
|
|
7
|
+
*
|
|
8
|
+
* This software is distributed under the MIT License,
|
|
9
|
+
* see the "LICENSE" file for more details
|
|
10
|
+
*
|
|
11
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
12
|
+
* Software description: Make test writing fast, understandable by any human
|
|
13
|
+
* understanding English or French.
|
|
14
|
+
*/
|
|
16
15
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17
16
|
if (k2 === undefined) k2 = k;
|
|
18
17
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Software Name : UUV
|
|
3
|
-
*
|
|
4
|
-
* SPDX-FileCopyrightText: Copyright (c)
|
|
5
|
-
* SPDX-License-Identifier: MIT
|
|
6
|
-
*
|
|
7
|
-
* This software is distributed under the MIT License,
|
|
8
|
-
* the
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
*/
|
|
2
|
+
* Software Name : UUV
|
|
3
|
+
*
|
|
4
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
5
|
+
* SPDX-License-Identifier: MIT
|
|
6
|
+
*
|
|
7
|
+
* This software is distributed under the MIT License,
|
|
8
|
+
* see the "LICENSE" file for more details
|
|
9
|
+
*
|
|
10
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
11
|
+
* Software description: Make test writing fast, understandable by any human
|
|
12
|
+
* understanding English or French.
|
|
13
|
+
*/
|
|
15
14
|
import { TEST_RUNNER_ENUM } from "./common";
|
|
16
15
|
export declare function generateStepDefinitionForWebRunner(baseDir: string, runner: TEST_RUNNER_ENUM): void;
|
|
17
16
|
export declare function generateStepDefinitionForMobileRunner(baseDir: string, runner: TEST_RUNNER_ENUM): void;
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Software Name : UUV
|
|
4
|
-
*
|
|
5
|
-
* SPDX-FileCopyrightText: Copyright (c)
|
|
6
|
-
* SPDX-License-Identifier: MIT
|
|
7
|
-
*
|
|
8
|
-
* This software is distributed under the MIT License,
|
|
9
|
-
* the
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
*/
|
|
3
|
+
* Software Name : UUV
|
|
4
|
+
*
|
|
5
|
+
* SPDX-FileCopyrightText: Copyright (c) Orange SA
|
|
6
|
+
* SPDX-License-Identifier: MIT
|
|
7
|
+
*
|
|
8
|
+
* This software is distributed under the MIT License,
|
|
9
|
+
* see the "LICENSE" file for more details
|
|
10
|
+
*
|
|
11
|
+
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
|
|
12
|
+
* Software description: Make test writing fast, understandable by any human
|
|
13
|
+
* understanding English or French.
|
|
14
|
+
*/
|
|
16
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
16
|
exports.generateStepDefinitionForMobileRunner = exports.generateStepDefinitionForWebRunner = void 0;
|
|
18
17
|
const generate_base_step_definitions_1 = require("./generate-base-step-definitions");
|
package/package.json
CHANGED