storybook-addon-playwright 4.15.1 → 4.15.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/.vscode/launch.json +50 -0
- package/.vscode/settings.json +24 -0
- package/.vscode/tasks.json +15 -0
- package/package.json +3 -3
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
// Use IntelliSense to learn about possible attributes.
|
|
3
|
+
// Hover to view descriptions of existing attributes.
|
|
4
|
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
+
"version": "0.2.0",
|
|
6
|
+
"configurations": [
|
|
7
|
+
{
|
|
8
|
+
"type": "node",
|
|
9
|
+
"request": "attach",
|
|
10
|
+
"name": "Attach by Process ID",
|
|
11
|
+
"processId": "${command:PickProcess}",
|
|
12
|
+
"skipFiles": [
|
|
13
|
+
"<node_internals>/**"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "chrome",
|
|
18
|
+
"request": "launch",
|
|
19
|
+
"name": "Storybook Debug",
|
|
20
|
+
"breakOnLoad": true,
|
|
21
|
+
"url": "http://localhost:9002",
|
|
22
|
+
"sourceMaps": true,
|
|
23
|
+
"webRoot": "${workspaceFolder}",
|
|
24
|
+
"sourceMapPathOverrides": {
|
|
25
|
+
"webpack:///*": "${webRoot}/*",
|
|
26
|
+
"webpack:///./*": "${webRoot}/*",
|
|
27
|
+
"webpack:///src/*": "${webRoot}/*",
|
|
28
|
+
"webpack:///./~/*": "${webRoot}/node_modules/*"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "node",
|
|
33
|
+
"request": "launch",
|
|
34
|
+
"name": "Jest Current File",
|
|
35
|
+
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
|
36
|
+
"args": [
|
|
37
|
+
"--runTestsByPath",
|
|
38
|
+
"${relativeFile}",
|
|
39
|
+
"--config",
|
|
40
|
+
"jest.config.js"
|
|
41
|
+
],
|
|
42
|
+
"console": "integratedTerminal",
|
|
43
|
+
"internalConsoleOptions": "neverOpen",
|
|
44
|
+
"disableOptimisticBPs": true,
|
|
45
|
+
"windows": {
|
|
46
|
+
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cSpell.words": [
|
|
3
|
+
"autorun",
|
|
4
|
+
"dblclick",
|
|
5
|
+
"deepmerge",
|
|
6
|
+
"draggables",
|
|
7
|
+
"droppable",
|
|
8
|
+
"mobx",
|
|
9
|
+
"normalazed",
|
|
10
|
+
"pkginfo",
|
|
11
|
+
"Resizer",
|
|
12
|
+
"scrl",
|
|
13
|
+
"scrollbar",
|
|
14
|
+
"Selecto",
|
|
15
|
+
"tippyjs",
|
|
16
|
+
"Toolshown"
|
|
17
|
+
],
|
|
18
|
+
"liveServer.settings.fileList": [
|
|
19
|
+
{
|
|
20
|
+
"label": "jest",
|
|
21
|
+
"relativePath": "coverage/lcov-report/index.html"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
3
|
+
// for the documentation about the tasks.json format
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"tasks": [
|
|
6
|
+
{
|
|
7
|
+
"label": "watch",
|
|
8
|
+
"type": "shell",
|
|
9
|
+
"group": "build",
|
|
10
|
+
"command": "npm run watch",
|
|
11
|
+
"problemMatcher": [],
|
|
12
|
+
"auto": true
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "storybook-addon-playwright",
|
|
3
|
-
"version": "4.15.
|
|
3
|
+
"version": "4.15.2",
|
|
4
4
|
"description": "An addon to visually test the stories in the multiple browsers within storybook environment",
|
|
5
5
|
"author": "m.doaie <mdoaie@yahoo.co.uk>",
|
|
6
6
|
"engines": {
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"reinspect": "^1.1.0",
|
|
146
146
|
"sharp": "^0.30.4",
|
|
147
147
|
"tinycolor2": "^1.4.2",
|
|
148
|
-
"ts-to-json": "^1.8.
|
|
148
|
+
"ts-to-json": "^1.8.3",
|
|
149
149
|
"typescript": "~5.1.3",
|
|
150
150
|
"webpack-sources": "^3.2.3",
|
|
151
151
|
"zustand": "^4.3.6"
|
|
@@ -153,4 +153,4 @@
|
|
|
153
153
|
"storybook": {
|
|
154
154
|
"displayName": "Playwright"
|
|
155
155
|
}
|
|
156
|
-
}
|
|
156
|
+
}
|