@serenity-js/mocha 3.42.0 → 3.42.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.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.42.2](https://github.com/serenity-js/serenity-js/compare/v3.42.1...v3.42.2) (2026-04-26)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/mocha
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.42.1](https://github.com/serenity-js/serenity-js/compare/v3.42.0...v3.42.1) (2026-04-08)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @serenity-js/mocha
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.42.0](https://github.com/serenity-js/serenity-js/compare/v3.41.2...v3.42.0) (2026-03-19)
|
|
7
23
|
|
|
8
24
|
|
|
@@ -4,7 +4,7 @@ import type { Outcome } from '@serenity-js/core/model';
|
|
|
4
4
|
import type { MochaConfig } from './MochaConfig.js';
|
|
5
5
|
/**
|
|
6
6
|
* Allows for programmatic execution of Mocha test scenarios,
|
|
7
|
-
* using
|
|
7
|
+
* using Serenity/JS reporter for mocha to report progress.
|
|
8
8
|
*
|
|
9
9
|
* ## Learn more
|
|
10
10
|
* - [`TestRunnerAdapter`](https://serenity-js.org/api/core-adapter/interface/TestRunnerAdapter/)
|
|
@@ -5,7 +5,7 @@ import { ExecutionIgnored, ImplementationPending } from '@serenity-js/core/model
|
|
|
5
5
|
import reporter from '../index.js';
|
|
6
6
|
/**
|
|
7
7
|
* Allows for programmatic execution of Mocha test scenarios,
|
|
8
|
-
* using
|
|
8
|
+
* using Serenity/JS reporter for mocha to report progress.
|
|
9
9
|
*
|
|
10
10
|
* ## Learn more
|
|
11
11
|
* - [`TestRunnerAdapter`](https://serenity-js.org/api/core-adapter/interface/TestRunnerAdapter/)
|
|
@@ -4,7 +4,7 @@ import type { Outcome } from '@serenity-js/core/model';
|
|
|
4
4
|
import type { MochaConfig } from './MochaConfig.js';
|
|
5
5
|
/**
|
|
6
6
|
* Allows for programmatic execution of Mocha test scenarios,
|
|
7
|
-
* using
|
|
7
|
+
* using Serenity/JS reporter for mocha to report progress.
|
|
8
8
|
*
|
|
9
9
|
* ## Learn more
|
|
10
10
|
* - [`TestRunnerAdapter`](https://serenity-js.org/api/core-adapter/interface/TestRunnerAdapter/)
|
|
@@ -11,7 +11,7 @@ const model_1 = require("@serenity-js/core/model");
|
|
|
11
11
|
const index_js_1 = __importDefault(require("../index.js"));
|
|
12
12
|
/**
|
|
13
13
|
* Allows for programmatic execution of Mocha test scenarios,
|
|
14
|
-
* using
|
|
14
|
+
* using Serenity/JS reporter for mocha to report progress.
|
|
15
15
|
*
|
|
16
16
|
* ## Learn more
|
|
17
17
|
* - [`TestRunnerAdapter`](https://serenity-js.org/api/core-adapter/interface/TestRunnerAdapter/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/mocha",
|
|
3
|
-
"version": "3.42.
|
|
3
|
+
"version": "3.42.2",
|
|
4
4
|
"description": "Serenity/JS test runner adapter for Mocha, enabling the use of the Screenplay Pattern in Mocha-based test suites and leveraging Serenity/JS reporting capabilities",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"node": "^20 || ^22 || ^24"
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
|
-
"@serenity-js/core": "3.42.
|
|
100
|
+
"@serenity-js/core": "3.42.2"
|
|
101
101
|
},
|
|
102
102
|
"peerDependencies": {
|
|
103
103
|
"mocha": "^10.8.2 || ^11.0.1"
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
"c8": "11.0.0",
|
|
110
110
|
"mocha": "11.7.5",
|
|
111
111
|
"mocha-multi": "1.1.7",
|
|
112
|
-
"tsx": "4.
|
|
112
|
+
"tsx": "4.21.0",
|
|
113
113
|
"typescript": "5.9.3"
|
|
114
114
|
},
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "e0df1ddca37510fb3a9f64b1ed343a101cfa3a0d"
|
|
116
116
|
}
|
|
@@ -13,7 +13,7 @@ import type { MochaConfig } from './MochaConfig.js';
|
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Allows for programmatic execution of Mocha test scenarios,
|
|
16
|
-
* using
|
|
16
|
+
* using Serenity/JS reporter for mocha to report progress.
|
|
17
17
|
*
|
|
18
18
|
* ## Learn more
|
|
19
19
|
* - [`TestRunnerAdapter`](https://serenity-js.org/api/core-adapter/interface/TestRunnerAdapter/)
|