@playwright/experimental-ct-vue 1.56.0-alpha-2025-09-17 → 1.56.0-alpha-1758292576000

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/index.d.ts +4 -2
  2. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -52,7 +52,7 @@ export interface MountResultJsx extends Locator {
52
52
  update(component: JSX.Element): Promise<void>;
53
53
  }
54
54
 
55
- export const test: TestType<{
55
+ export interface ComponentFixtures {
56
56
  mount<HooksConfig>(
57
57
  component: JSX.Element,
58
58
  options?: MountOptionsJsx<HooksConfig>
@@ -61,6 +61,8 @@ export const test: TestType<{
61
61
  component: Component,
62
62
  options?: MountOptions<HooksConfig, Component>
63
63
  ): Promise<MountResult<Component>>;
64
- }>;
64
+ }
65
+
66
+ export const test: TestType<ComponentFixtures>;
65
67
 
66
68
  export { defineConfig, PlaywrightTestConfig, expect, devices } from '@playwright/experimental-ct-core';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playwright/experimental-ct-vue",
3
- "version": "1.56.0-alpha-2025-09-17",
3
+ "version": "1.56.0-alpha-1758292576000",
4
4
  "description": "Playwright Component Testing for Vue",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,7 +30,7 @@
30
30
  "./package.json": "./package.json"
31
31
  },
32
32
  "dependencies": {
33
- "@playwright/experimental-ct-core": "1.56.0-alpha-2025-09-17",
33
+ "@playwright/experimental-ct-core": "1.56.0-alpha-1758292576000",
34
34
  "@vitejs/plugin-vue": "^5.2.0"
35
35
  },
36
36
  "bin": {