@stacksjs/testing 0.54.5 → 0.56.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/dist/index.d.ts CHANGED
@@ -1,2 +1,4 @@
1
- export * as unit from 'vitest';
2
- export * as feature from '@playwright/test';
1
+ import * as vitest from 'vitest';
2
+ export { vitest as unit };
3
+ import * as test from '@playwright/test';
4
+ export { test as feature };
package/dist/index.mjs CHANGED
@@ -1,2 +1,4 @@
1
- export * as unit from "vitest";
2
- export * as feature from "@playwright/test";
1
+ import * as vitest from 'vitest';
2
+ export { vitest as unit };
3
+ import * as test from '@playwright/test';
4
+ export { test as feature };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/testing",
3
3
  "type": "module",
4
- "version": "0.54.5",
5
- "packageManager": "pnpm@8.6.1",
4
+ "version": "0.56.0",
5
+ "packageManager": "pnpm@8.6.4",
6
6
  "description": "The Stacks way of testing.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -44,10 +44,10 @@
44
44
  "README.md"
45
45
  ],
46
46
  "peerDependencies": {
47
- "@playwright/test": "^1.34.3",
48
- "@vitest/coverage-istanbul": "^0.31.4",
49
- "@vitest/ui": "^0.31.4",
50
- "vitest": "^0.31.4"
47
+ "@playwright/test": "^1.35.1",
48
+ "@vitest/coverage-istanbul": "^0.32.2",
49
+ "@vitest/ui": "^0.32.2",
50
+ "vitest": "^0.32.2"
51
51
  },
52
52
  "devDependencies": {
53
53
  "typescript": "^5.1.3",