@playwright/experimental-ct-svelte 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.
- package/index.d.ts +4 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -39,11 +39,13 @@ export interface MountResult<Component extends InteropComponent> extends Locator
|
|
|
39
39
|
}): Promise<void>;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
export
|
|
42
|
+
export interface ComponentFixtures {
|
|
43
43
|
mount<HooksConfig, Component extends InteropComponent = InteropComponent>(
|
|
44
44
|
component: Component,
|
|
45
45
|
options?: MountOptions<HooksConfig, Component>
|
|
46
46
|
): Promise<MountResult<Component>>;
|
|
47
|
-
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export const test: TestType<ComponentFixtures>;
|
|
48
50
|
|
|
49
51
|
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-svelte",
|
|
3
|
-
"version": "1.56.0-alpha-
|
|
3
|
+
"version": "1.56.0-alpha-1758292576000",
|
|
4
4
|
"description": "Playwright Component Testing for Svelte",
|
|
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-
|
|
33
|
+
"@playwright/experimental-ct-core": "1.56.0-alpha-1758292576000",
|
|
34
34
|
"@sveltejs/vite-plugin-svelte": "^5.1.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|