shiplightai 0.1.38 → 0.1.40
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 +2 -4
- package/dist/cjs/debugger-pw.cjs +131 -359
- package/dist/cjs/fixture.cjs +168 -396
- package/dist/cjs/index.cjs +168 -396
- package/dist/cjs/reporter.cjs +59 -49
- package/dist/cli.js +80 -71
- package/dist/debugger-pw.js +131 -359
- package/dist/fixture.d.ts +2 -2
- package/dist/fixture.js +168 -396
- package/dist/index.d.ts +38 -4
- package/dist/index.js +168 -396
- package/dist/reporter.d.ts +5 -0
- package/dist/reporter.js +59 -49
- package/package.json +18 -3
- package/dist/static/assets/index-C8nWHK_h.js +0 -1484
- package/dist/static/assets/index-DzUL8rFA.css +0 -1
- package/dist/static/assets/index-postIiDJ.js +0 -12
- package/dist/static/index.html +0 -17
package/README.md
CHANGED
|
@@ -19,8 +19,7 @@ npm install -D shiplightai @playwright/test
|
|
|
19
19
|
In your `playwright.config.ts`:
|
|
20
20
|
|
|
21
21
|
```ts
|
|
22
|
-
import { defineConfig } from '
|
|
23
|
-
import { shiplightConfig } from 'shiplightai';
|
|
22
|
+
import { defineConfig, shiplightConfig } from 'shiplightai';
|
|
24
23
|
|
|
25
24
|
export default defineConfig({
|
|
26
25
|
...shiplightConfig(),
|
|
@@ -120,8 +119,7 @@ my-tests/
|
|
|
120
119
|
|
|
121
120
|
**`playwright.config.ts`** — Playwright config with `shiplightConfig()`:
|
|
122
121
|
```ts
|
|
123
|
-
import { defineConfig } from '
|
|
124
|
-
import { shiplightConfig } from 'shiplightai';
|
|
122
|
+
import { defineConfig, shiplightConfig } from 'shiplightai';
|
|
125
123
|
|
|
126
124
|
export default defineConfig({
|
|
127
125
|
...shiplightConfig(),
|