shiplightai 0.1.80 → 0.1.81
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/dist/cjs/debugger-pw.cjs +34 -34
- package/dist/cjs/fixture.cjs +43 -43
- package/dist/cjs/index.cjs +53 -53
- package/dist/cjs/reporter.cjs +1 -1
- package/dist/cli.js +47 -47
- package/dist/debugger-pw.js +36 -36
- package/dist/fixture.d.ts +1 -1
- package/dist/fixture.js +44 -44
- package/dist/index.js +53 -53
- package/dist/reporter.js +1 -1
- package/package.json +3 -3
package/dist/fixture.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ interface AuthSpec {
|
|
|
36
36
|
* The module is cached by Node's module system after the first import,
|
|
37
37
|
* so multiple tests sharing the same auth path reuse the same instance.
|
|
38
38
|
*/
|
|
39
|
-
declare function resolveAuthState(spec: AuthSpec, browser?: Browser): Promise<string>;
|
|
39
|
+
declare function resolveAuthState(spec: AuthSpec, browser?: Browser, baseURL?: string): Promise<string>;
|
|
40
40
|
/**
|
|
41
41
|
* Standard Playwright context-option `use:` keys whose resolved (per-test aware)
|
|
42
42
|
* values we overlay onto `testInfo.project.use`. Must stay identical to the
|