@storm-software/testing-tools 1.38.0 → 1.42.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 +35 -0
- package/README.md +6 -3
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## 1.42.0 (2024-06-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🚀 Features
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Upgrade the workspace pnpm-lock file ([d33c20cb](https://github.com/storm-software/storm-ops/commit/d33c20cb))
|
|
7
|
+
|
|
8
|
+
## 1.41.0 (2024-06-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### 🚀 Features
|
|
12
|
+
|
|
13
|
+
- **storm-ops:** Updated pnpm-lock file ([22be1efd](https://github.com/storm-software/storm-ops/commit/22be1efd))
|
|
14
|
+
|
|
15
|
+
## 1.40.0 (2024-06-22)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### 🚀 Features
|
|
19
|
+
|
|
20
|
+
- **workspace-tools:** Added `lint` and `format` tasks and improved cache input management ([f2ade202](https://github.com/storm-software/storm-ops/commit/f2ade202))
|
|
21
|
+
|
|
22
|
+
## 1.39.0 (2024-06-21)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### 🚀 Features
|
|
26
|
+
|
|
27
|
+
- **eslint-plugin:** Resolve issues with eslint module types ([ca513974](https://github.com/storm-software/storm-ops/commit/ca513974))
|
|
28
|
+
|
|
29
|
+
## 1.38.1 (2024-06-05)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### 🩹 Fixes
|
|
33
|
+
|
|
34
|
+
- **eslint:** Resolve issue with missing dependencies ([b0f43454](https://github.com/storm-software/storm-ops/commit/b0f43454))
|
|
35
|
+
|
|
1
36
|
## 1.38.0 (2024-06-03)
|
|
2
37
|
|
|
3
38
|
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/)
|
|
25
25
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
26
26
|
|
|
27
27
|
> [!IMPORTANT]
|
|
@@ -37,7 +37,9 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
37
37
|
|
|
38
38
|
# Storm Testing Tools
|
|
39
39
|
|
|
40
|
-
This package contains various testing tools used by Storm workspaces to drive
|
|
40
|
+
This package contains various testing tools used by Storm workspaces to drive
|
|
41
|
+
unit and e2e testing. The following packages are included and combined into an
|
|
42
|
+
easy to use CLI tool:
|
|
41
43
|
|
|
42
44
|
- [Jest](https://jestjs.io/)
|
|
43
45
|
- [Vitest](https://vitest.dev/)
|
|
@@ -80,7 +82,8 @@ Run `nx build testing-tools` to build the library.
|
|
|
80
82
|
|
|
81
83
|
## Running unit tests
|
|
82
84
|
|
|
83
|
-
Run `nx test testing-tools` to execute the unit tests via
|
|
85
|
+
Run `nx test testing-tools` to execute the unit tests via
|
|
86
|
+
[Jest](https://jestjs.io).
|
|
84
87
|
|
|
85
88
|
<!-- START footer -->
|
|
86
89
|
<!-- prettier-ignore-start -->
|
package/package.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/testing-tools",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"
|
|
3
|
+
"version": "1.42.0",
|
|
4
|
+
"type": "commonjs",
|
|
5
5
|
"description": "âš¡ A package containing various testing tools used by Storm workspaces to drive unit and e2e testing.",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"storm",
|
|
8
|
-
"storm-ops",
|
|
9
|
-
"stormstack",
|
|
10
|
-
"storm-stack",
|
|
11
|
-
"sullivanpj",
|
|
12
|
-
"open-system",
|
|
13
|
-
"monorepo"
|
|
14
|
-
],
|
|
15
|
-
"homepage": "https://stormsoftware.com",
|
|
16
|
-
"bugs": {
|
|
17
|
-
"url": "https://github.com/storm-software/storm-ops/issues",
|
|
18
|
-
"email": "support@stormsoftware.com"
|
|
19
|
-
},
|
|
20
6
|
"repository": {
|
|
21
7
|
"type": "github",
|
|
22
8
|
"url": "https://github.com/storm-software/storm-ops",
|
|
23
9
|
"directory": "packages/testing-tools"
|
|
24
10
|
},
|
|
25
|
-
"
|
|
11
|
+
"homepage": "https://stormsoftware.com",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/storm-software/storm-ops/issues",
|
|
14
|
+
"email": "support@stormsoftware.com"
|
|
15
|
+
},
|
|
26
16
|
"author": {
|
|
27
17
|
"name": "Storm Software",
|
|
28
18
|
"email": "contact@stormsoftware.com",
|
|
29
19
|
"url": "https://stormsoftware.com"
|
|
30
20
|
},
|
|
31
|
-
"
|
|
21
|
+
"license": "Apache 2.0",
|
|
22
|
+
"private": false,
|
|
32
23
|
"module": "./index.js",
|
|
33
24
|
"types": "./declarations.d.ts",
|
|
25
|
+
"keywords": [
|
|
26
|
+
"storm",
|
|
27
|
+
"storm-ops",
|
|
28
|
+
"stormstack",
|
|
29
|
+
"storm-stack",
|
|
30
|
+
"sullivanpj",
|
|
31
|
+
"open-system",
|
|
32
|
+
"monorepo"
|
|
33
|
+
],
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@nx/jest": "^19.1.0",
|
|
36
|
+
"jest": "29.7.0"
|
|
37
|
+
},
|
|
34
38
|
"devDependencies": {
|
|
35
39
|
"@nx/jest": "^19.1.0",
|
|
36
40
|
"jest": "29.7.0",
|
|
37
41
|
"jest-resolve": "29.7.0"
|
|
38
42
|
},
|
|
39
|
-
"peerDependencies": {
|
|
40
|
-
"@nx/jest": "^19.1.0",
|
|
41
|
-
"jest": "29.7.0"
|
|
42
|
-
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
}
|