@storm-software/testing-tools 1.42.0 → 1.44.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 +736 -533
- package/README.md +87 -29
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
<div align="center">
|
|
10
10
|
<b>
|
|
11
|
-
<a href="https://stormsoftware.com" target="_blank">Website</a> •
|
|
12
|
-
<a href="https://github.com/storm-software/storm-ops" target="_blank">GitHub</a> •
|
|
13
|
-
<a href="https://discord.gg/MQ6YVzakM5">Discord</a> •
|
|
11
|
+
<a href="https://stormsoftware.com" target="_blank">Website</a> •
|
|
12
|
+
<a href="https://github.com/storm-software/storm-ops" target="_blank">GitHub</a> •
|
|
13
|
+
<a href="https://discord.gg/MQ6YVzakM5">Discord</a> • <a href="https://stormstack.github.io/stormstack/" target="_blank">Docs</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> •
|
|
14
14
|
<a href="https://github.com/storm-software/storm-ops/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a>
|
|
15
15
|
</b>
|
|
16
16
|
</div>
|
|
@@ -21,14 +21,42 @@ 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
|
-
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
24
|
+
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
26
25
|
|
|
27
|
-
|
|
26
|
+
<!-- prettier-ignore-start -->
|
|
27
|
+
<!-- markdownlint-disable -->
|
|
28
|
+
|
|
29
|
+
> [!IMPORTANT]
|
|
28
30
|
> This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.
|
|
29
31
|
|
|
32
|
+
<!-- markdownlint-restore -->
|
|
33
|
+
<!-- prettier-ignore-end -->
|
|
34
|
+
|
|
35
|
+
<div align="center">
|
|
36
|
+
<b>Be sure to ⭐ this repository on <a href="https://github.com/storm-software/storm-ops" target="_blank">GitHub</a> so you can keep up to date on any daily progress!</b>
|
|
37
|
+
</div>
|
|
38
|
+
|
|
30
39
|
<br />
|
|
31
40
|
|
|
41
|
+
<!-- START doctoc -->
|
|
42
|
+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
## Table of Contents
|
|
44
|
+
|
|
45
|
+
- [Storm Testing Tools](#storm-testing-tools)
|
|
46
|
+
- [Installing](#installing)
|
|
47
|
+
- [Building](#building)
|
|
48
|
+
- [Running unit tests](#running-unit-tests)
|
|
49
|
+
- [Storm Workspaces](#storm-workspaces)
|
|
50
|
+
- [Roadmap](#roadmap)
|
|
51
|
+
- [Support](#support)
|
|
52
|
+
- [License](#license)
|
|
53
|
+
- [Changelog](#changelog)
|
|
54
|
+
- [Contributing](#contributing)
|
|
55
|
+
- [Contributors](#contributors)
|
|
56
|
+
|
|
57
|
+
<!-- END doctoc -->
|
|
58
|
+
|
|
59
|
+
<br />
|
|
32
60
|
|
|
33
61
|
<!-- markdownlint-restore -->
|
|
34
62
|
<!-- prettier-ignore-end -->
|
|
@@ -45,11 +73,6 @@ easy to use CLI tool:
|
|
|
45
73
|
- [Vitest](https://vitest.dev/)
|
|
46
74
|
- [Cypress](https://www.cypress.io/)
|
|
47
75
|
|
|
48
|
-
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
49
|
-
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
50
|
-
|
|
51
|
-
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
52
|
-
|
|
53
76
|
## Installing
|
|
54
77
|
|
|
55
78
|
Using [pnpm](http://pnpm.io):
|
|
@@ -92,17 +115,25 @@ Run `nx test testing-tools` to execute the unit tests via
|
|
|
92
115
|
|
|
93
116
|
## Storm Workspaces
|
|
94
117
|
|
|
95
|
-
Storm workspaces are built using
|
|
118
|
+
Storm workspaces are built using
|
|
119
|
+
<a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools
|
|
120
|
+
for monorepos, which helps you develop like Google, Facebook, and Microsoft.
|
|
121
|
+
Building on top of Nx, the Open System provides a set of tools and patterns that
|
|
122
|
+
help you scale your monorepo to many teams while keeping the codebase
|
|
123
|
+
maintainable.
|
|
96
124
|
|
|
97
125
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
98
126
|
<br />
|
|
99
127
|
|
|
100
128
|
## Roadmap
|
|
101
129
|
|
|
102
|
-
See the [open issues](https://github.com/storm-software/storm-ops/issues) for a
|
|
130
|
+
See the [open issues](https://github.com/storm-software/storm-ops/issues) for a
|
|
131
|
+
list of proposed features (and known issues).
|
|
103
132
|
|
|
104
|
-
- [Top Feature Requests](https://github.com/storm-software/storm-ops/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc)
|
|
105
|
-
|
|
133
|
+
- [Top Feature Requests](https://github.com/storm-software/storm-ops/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc)
|
|
134
|
+
(Add your votes using the 👍 reaction)
|
|
135
|
+
- [Top Bugs](https://github.com/storm-software/storm-ops/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc)
|
|
136
|
+
(Add your votes using the 👍 reaction)
|
|
106
137
|
- [Newest Bugs](https://github.com/storm-software/storm-ops/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
|
|
107
138
|
|
|
108
139
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
@@ -121,7 +152,8 @@ Reach out to the maintainer at one of the following places:
|
|
|
121
152
|
|
|
122
153
|
## License
|
|
123
154
|
|
|
124
|
-
This project is licensed under the **Apache License 2.0**. Feel free to edit and
|
|
155
|
+
This project is licensed under the **Apache License 2.0**. Feel free to edit and
|
|
156
|
+
distribute this template as you like.
|
|
125
157
|
|
|
126
158
|
See [LICENSE](LICENSE) for more information.
|
|
127
159
|
|
|
@@ -130,32 +162,42 @@ See [LICENSE](LICENSE) for more information.
|
|
|
130
162
|
|
|
131
163
|
## Changelog
|
|
132
164
|
|
|
133
|
-
This project adheres to
|
|
165
|
+
This project adheres to
|
|
166
|
+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). Every release, along
|
|
167
|
+
with the migration instructions, is documented in the [CHANGELOG](CHANGELOG.md)
|
|
168
|
+
file
|
|
134
169
|
|
|
135
170
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
136
171
|
<br />
|
|
137
172
|
|
|
138
173
|
## Contributing
|
|
139
174
|
|
|
140
|
-
First off, thanks for taking the time to contribute! Contributions are what
|
|
175
|
+
First off, thanks for taking the time to contribute! Contributions are what
|
|
176
|
+
makes the open-source community such an amazing place to learn, inspire, and
|
|
177
|
+
create. Any contributions you make will benefit everybody else and are **greatly
|
|
178
|
+
appreciated**.
|
|
141
179
|
|
|
142
180
|
Please try to create bug reports that are:
|
|
143
181
|
|
|
144
182
|
- _Reproducible._ Include steps to reproduce the problem.
|
|
145
|
-
- _Specific._ Include as much detail as possible: which version, what
|
|
183
|
+
- _Specific._ Include as much detail as possible: which version, what
|
|
184
|
+
environment, etc.
|
|
146
185
|
- _Unique._ Do not duplicate existing opened issues.
|
|
147
186
|
- _Scoped to a Single Bug._ One bug per report.
|
|
148
187
|
|
|
149
188
|
Please adhere to this project's [code of conduct](.github/CODE_OF_CONDUCT.md).
|
|
150
189
|
|
|
151
|
-
You can use
|
|
190
|
+
You can use
|
|
191
|
+
[markdownlint-cli](https://github.com/storm-software/storm-ops/markdownlint-cli)
|
|
192
|
+
to check for common markdown style inconsistency.
|
|
152
193
|
|
|
153
194
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
154
195
|
<br />
|
|
155
196
|
|
|
156
197
|
## Contributors
|
|
157
198
|
|
|
158
|
-
Thanks goes to these wonderful people
|
|
199
|
+
Thanks goes to these wonderful people
|
|
200
|
+
([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
159
201
|
|
|
160
202
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
161
203
|
|
|
@@ -180,7 +222,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
180
222
|
|
|
181
223
|
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
182
224
|
|
|
183
|
-
This project follows the
|
|
225
|
+
This project follows the
|
|
226
|
+
[all-contributors](https://github.com/all-contributors/all-contributors)
|
|
227
|
+
specification. Contributions of any kind welcome!
|
|
184
228
|
|
|
185
229
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
186
230
|
<br />
|
|
@@ -194,9 +238,7 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
194
238
|
<br />
|
|
195
239
|
|
|
196
240
|
<div align="center">
|
|
197
|
-
<
|
|
198
|
-
<a href="https://stormsoftware.com" target="_blank">Website</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> • <a href="https://discord.gg/MQ6YVzakM5">Discord</a> • <a href="https://linkedin.com/in/pat-sullivan-dev" target="_blank">LinkedIn</a> • <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> • <a href="https://github.com/storm-software" target="_blank">GitHub</a> • <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
|
|
199
|
-
</b>
|
|
241
|
+
<a href="https://stormsoftware.com" target="_blank">Website</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> • <a href="https://linkedin.com/in/patrick-sullivan-865526b0" target="_blank">LinkedIn</a> • <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> • <a href="https://github.com/storm-software" target="_blank">GitHub</a> • <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
|
|
200
242
|
</div>
|
|
201
243
|
|
|
202
244
|
<div align="center">
|
|
@@ -204,18 +246,34 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
204
246
|
</div>
|
|
205
247
|
<br />
|
|
206
248
|
|
|
207
|
-
Storm Software is an open source software development organization and creator
|
|
249
|
+
Storm Software is an open source software development organization and creator
|
|
250
|
+
of Acidic, StormStack and StormCloud.
|
|
208
251
|
|
|
209
|
-
Our mission is to make software development more accessible. Our ideal future is
|
|
252
|
+
Our mission is to make software development more accessible. Our ideal future is
|
|
253
|
+
one where anyone can create software without years of prior development
|
|
254
|
+
experience serving as a barrier to entry. We hope to achieve this via LLMs,
|
|
255
|
+
Generative AI, and intuitive, high-level data modeling/programming languages.
|
|
210
256
|
|
|
211
|
-
|
|
257
|
+
Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team,
|
|
258
|
+
receive release notifications, ask questions, and get involved.
|
|
212
259
|
|
|
260
|
+
If this sounds interesting, and you would like to help us in creating the next
|
|
261
|
+
generation of development tools, please reach out on our
|
|
262
|
+
[website](https://stormsoftware.com/contact) or join our
|
|
263
|
+
[Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA)
|
|
264
|
+
channel!
|
|
265
|
+
|
|
266
|
+
<br />
|
|
267
|
+
|
|
268
|
+
<div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/icon-fill.png" alt="Storm Software" width="200px"/></a></div>
|
|
213
269
|
<br />
|
|
214
|
-
<
|
|
270
|
+
<div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/visit-us-text.svg" alt="Visit us at stormsoftware.com" height="90px"/></a></div>
|
|
215
271
|
|
|
216
272
|
<br />
|
|
273
|
+
|
|
217
274
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
218
275
|
<br />
|
|
276
|
+
<br />
|
|
219
277
|
|
|
220
278
|
|
|
221
279
|
<!-- markdownlint-restore -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/testing-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.44.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "⚡ A package containing various testing tools used by Storm workspaces to drive unit and e2e testing.",
|
|
6
6
|
"repository": {
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"monorepo"
|
|
33
33
|
],
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@nx/jest": "^19.
|
|
35
|
+
"@nx/jest": "^19.5.3",
|
|
36
36
|
"jest": "29.7.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@nx/jest": "^19.
|
|
39
|
+
"@nx/jest": "^19.5.3",
|
|
40
40
|
"jest": "29.7.0",
|
|
41
41
|
"jest-resolve": "29.7.0"
|
|
42
42
|
},
|