lux-design-system 7.0.1 → 7.2.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/README.md +14 -2
- package/dist/lux-styleguidist.iife.js +33 -33
- package/dist/lux-styleguidist.mjs +2807 -2690
- package/dist/lux-styleguidist.umd.js +33 -33
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,8 +25,18 @@ npm run styleguide
|
|
|
25
25
|
|
|
26
26
|
#### Running playwright
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
Playwright is an end to end testing harness. It is installed as a packge in the system and is run as part if the CI testing suite.
|
|
29
|
+
|
|
30
|
+
On first installation you must run `npx playwright install` to get the browsers for playwright.
|
|
31
|
+
|
|
32
|
+
* to run the tests without a ui and on multiple browsers
|
|
33
|
+
```
|
|
34
|
+
npx playwright test
|
|
35
|
+
```
|
|
36
|
+
* to run the test with screen shots of each step
|
|
37
|
+
```
|
|
38
|
+
npx playwright test --ui`
|
|
39
|
+
```
|
|
30
40
|
|
|
31
41
|
## Release a new version
|
|
32
42
|
|
|
@@ -36,6 +46,8 @@ need to be part of the PULibrary organization on npm.
|
|
|
36
46
|
```
|
|
37
47
|
npm login
|
|
38
48
|
npm install --global np # don't add this as a devDependency, otherwise you won't be able to push to npm
|
|
49
|
+
git switch main
|
|
50
|
+
git pull
|
|
39
51
|
npm run release
|
|
40
52
|
```
|
|
41
53
|
|