@storm-software/testing-tools 1.112.0 → 1.112.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/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
- [![Version](https://img.shields.io/badge/version-1.111.16-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.112.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/dist/index.cjs CHANGED
@@ -28,7 +28,7 @@ var import_node_path = require("path");
28
28
  function getJestConfig(projectDir, isNode = true, displayName) {
29
29
  return {
30
30
  displayName: displayName ? displayName : projectDir.replaceAll("\\", "-").replaceAll("/", "-"),
31
- preset: "@storm-software/testing-tools/jest/preset",
31
+ preset: "@storm-software/testing-tools/jest/config/preset",
32
32
  testEnvironment: isNode ? "node" : "jsdom",
33
33
  transform: {
34
34
  "^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }]
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import { join } from "node:path";
3
3
  function getJestConfig(projectDir, isNode = true, displayName) {
4
4
  return {
5
5
  displayName: displayName ? displayName : projectDir.replaceAll("\\", "-").replaceAll("/", "-"),
6
- preset: "@storm-software/testing-tools/jest/preset",
6
+ preset: "@storm-software/testing-tools/jest/config/preset",
7
7
  testEnvironment: isNode ? "node" : "jsdom",
8
8
  transform: {
9
9
  "^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }]
@@ -26,7 +26,7 @@ var import_node_path = require("path");
26
26
  function getJestConfig(projectDir, isNode = true, displayName) {
27
27
  return {
28
28
  displayName: displayName ? displayName : projectDir.replaceAll("\\", "-").replaceAll("/", "-"),
29
- preset: "@storm-software/testing-tools/jest/preset",
29
+ preset: "@storm-software/testing-tools/jest/config/preset",
30
30
  testEnvironment: isNode ? "node" : "jsdom",
31
31
  transform: {
32
32
  "^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }]
@@ -3,7 +3,7 @@ import { join } from "node:path";
3
3
  function getJestConfig(projectDir, isNode = true, displayName) {
4
4
  return {
5
5
  displayName: displayName ? displayName : projectDir.replaceAll("\\", "-").replaceAll("/", "-"),
6
- preset: "@storm-software/testing-tools/jest/preset",
6
+ preset: "@storm-software/testing-tools/jest/config/preset",
7
7
  testEnvironment: isNode ? "node" : "jsdom",
8
8
  transform: {
9
9
  "^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }]
@@ -52,7 +52,7 @@ var workspace_default = async () => ({
52
52
  "\\.spec\\.ts$",
53
53
  "\\.test\\.ts$",
54
54
  "<rootDir>/dist",
55
- "<rootDir>/test",
55
+ "<rootDir>/tests",
56
56
  "<rootDir>/__generated__",
57
57
  "<rootDir>/node_modules"
58
58
  ],
@@ -66,7 +66,7 @@ var workspace_default = async () => ({
66
66
  * Default: ["json", "lcov", "text"]
67
67
  */
68
68
  coverageReporters: ["lcov", "json"],
69
- setupFiles: ["@storm-software/testing-tools/jest/setup"],
69
+ setupFiles: ["./node_modules/@storm-software/testing-tools/jest/setup"],
70
70
  moduleNameMapper: {
71
71
  "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "@storm-software/testing-tools/jest/__mocks__/file.mock.js",
72
72
  "\\.(css|less)$": "@storm-software/testing-tools/jest/__mocks__/style.mock.js"
@@ -29,7 +29,7 @@ var workspace_default = async () => ({
29
29
  "\\.spec\\.ts$",
30
30
  "\\.test\\.ts$",
31
31
  "<rootDir>/dist",
32
- "<rootDir>/test",
32
+ "<rootDir>/tests",
33
33
  "<rootDir>/__generated__",
34
34
  "<rootDir>/node_modules"
35
35
  ],
@@ -43,7 +43,7 @@ var workspace_default = async () => ({
43
43
  * Default: ["json", "lcov", "text"]
44
44
  */
45
45
  coverageReporters: ["lcov", "json"],
46
- setupFiles: ["@storm-software/testing-tools/jest/setup"],
46
+ setupFiles: ["./node_modules/@storm-software/testing-tools/jest/setup"],
47
47
  moduleNameMapper: {
48
48
  "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "@storm-software/testing-tools/jest/__mocks__/file.mock.js",
49
49
  "\\.(css|less)$": "@storm-software/testing-tools/jest/__mocks__/style.mock.js"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/testing-tools",
3
- "version": "1.112.0",
3
+ "version": "1.112.2",
4
4
  "type": "module",
5
5
  "description": "A package containing various testing tools used by Storm workspaces to drive unit and e2e testing.",
6
6
  "repository": {
@@ -126,5 +126,5 @@
126
126
  "jest-resolve": "30.0.5"
127
127
  },
128
128
  "publishConfig": { "access": "public" },
129
- "gitHead": "02c8cb2e1f2bf609086789189e99224caec55688"
129
+ "gitHead": "43110f104601a8c968a08b471528d712fcf76ffe"
130
130
  }