@serenity-js/mocha 2.32.4 → 3.0.0-rc.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/CHANGELOG.md +41 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,47 @@
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.0.0-rc.2](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.1...v3.0.0-rc.2) (2021-12-09)
7
+
8
+ **Note:** Version bump only for package @serenity-js/mocha
9
+
10
+
11
+
12
+
13
+
14
+ # [3.0.0-rc.1](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.0...v3.0.0-rc.1) (2021-12-09)
15
+
16
+ **Note:** Version bump only for package @serenity-js/mocha
17
+
18
+
19
+
20
+
21
+
22
+ # [3.0.0-rc.0](https://github.com/serenity-js/serenity-js/compare/v2.32.5...v3.0.0-rc.0) (2021-12-08)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **core:** 3.0 RC ([469d54e](https://github.com/serenity-js/serenity-js/commit/469d54e4f81ef430566b93852e3174826f8ef672)), closes [#805](https://github.com/serenity-js/serenity-js/issues/805)
28
+
29
+
30
+ ### BREAKING CHANGES
31
+
32
+ * **core:** Introduced @serenity-js/web - a shared library for Serenity/JS Web integration
33
+ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped support for Node 12.
34
+
35
+
36
+
37
+
38
+
39
+ ## [2.32.5](https://github.com/serenity-js/serenity-js/compare/v2.32.4...v2.32.5) (2021-12-08)
40
+
41
+ **Note:** Version bump only for package @serenity-js/mocha
42
+
43
+
44
+
45
+
46
+
6
47
  ## [2.32.4](https://github.com/serenity-js/serenity-js/compare/v2.32.3...v2.32.4) (2021-11-25)
7
48
 
8
49
  **Note:** Version bump only for package @serenity-js/mocha
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/mocha",
3
- "version": "2.32.4",
3
+ "version": "3.0.0-rc.2",
4
4
  "description": "Serenity/JS adapter for Mocha",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "scripts": {
29
29
  "clean": "rimraf .nyc_output lib target",
30
- "lint": "eslint --ext ts --config ../../.eslintrc.js .",
30
+ "lint": "eslint --ext ts --config ../../.eslintrc.yml .",
31
31
  "lint:fix": "npm run lint -- --fix",
32
32
  "test": "nyc --report-dir ../../target/coverage/mocha mocha --config ../../.mocharc.yml 'spec/**/*.spec.*'",
33
33
  "compile": "tsc --project tsconfig.json",
@@ -41,19 +41,19 @@
41
41
  "url": "https://github.com/serenity-js/serenity-js/issues"
42
42
  },
43
43
  "engines": {
44
- "node": "^12 || ^14 || ^16",
44
+ "node": "^14 || ^16",
45
45
  "npm": "^6 || ^7 || ^8"
46
46
  },
47
47
  "dependencies": {
48
- "@serenity-js/core": "2.32.4"
48
+ "@serenity-js/core": "3.0.0-rc.1"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "mocha": "^9.1.3"
52
52
  },
53
53
  "devDependencies": {
54
- "@documentation/esdoc-template": "2.0.0",
55
- "@integration/testing-tools": "2.0.0",
56
- "@types/chai": "^4.2.22",
54
+ "@documentation/esdoc-template": "3.0.0",
55
+ "@integration/testing-tools": "3.0.0",
56
+ "@types/chai": "^4.3.0",
57
57
  "@types/mocha": "^9.0.0",
58
58
  "mocha": "^9.1.3",
59
59
  "ts-node": "^10.4.0",
@@ -81,5 +81,5 @@
81
81
  "cache": true,
82
82
  "all": true
83
83
  },
84
- "gitHead": "0c706f753343f1ce35b7e77460062d5762f6d4aa"
84
+ "gitHead": "944ff400a3766e75980aea5d3b401d8acca7c6d8"
85
85
  }