primitive-app 3.1.0-alpha.13 → 3.1.0-alpha.14
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/testing/index.d.ts +7 -5
- package/package.json +1 -1
package/dist/testing/index.d.ts
CHANGED
|
@@ -20,11 +20,13 @@ export interface RegisterPrimitiveTestsOptions {
|
|
|
20
20
|
/** WebSocket endpoint URL. Defaults to `process.env.VITE_WS_URL`. */
|
|
21
21
|
wsUrl?: string;
|
|
22
22
|
/**
|
|
23
|
-
* Sign-in email for the OTP test bypass. Must
|
|
24
|
-
* `testAccountBaseEmails` whitelist
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
23
|
+
* Sign-in email for the OTP test bypass. Must be a `+primitivetest`
|
|
24
|
+
* derivative of a base on the app's `testAccountBaseEmails` whitelist
|
|
25
|
+
* (e.g. `you+primitivetest-ci@domain.com` when `you@domain.com` is
|
|
26
|
+
* whitelisted) — the bare base address itself is never a test account and
|
|
27
|
+
* always fails sign-in. Use a stable suffix per CI project so the
|
|
28
|
+
* find-or-create provisioner reuses one test user across runs. Defaults to
|
|
29
|
+
* `process.env.PRIMITIVE_TEST_EMAIL`.
|
|
28
30
|
*/
|
|
29
31
|
email?: string;
|
|
30
32
|
/** OTP code to verify with. Defaults to the "000000" test bypass. */
|