@iblai/iblai-js 1.25.0 → 1.25.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.
|
@@ -3524,7 +3524,7 @@ function getTenantChatPrivacyRow(scope) {
|
|
|
3524
3524
|
}
|
|
3525
3525
|
async function expectTenantChatPrivacyVisible(scope, visible) {
|
|
3526
3526
|
if (visible) {
|
|
3527
|
-
await expect(getTenantChatPrivacyRow(scope)).toBeVisible({ timeout:
|
|
3527
|
+
await expect(getTenantChatPrivacyRow(scope)).toBeVisible({ timeout: 120000 });
|
|
3528
3528
|
}
|
|
3529
3529
|
else {
|
|
3530
3530
|
await expect(getTenantChatPrivacyRow(scope)).toBeHidden();
|
|
@@ -3532,7 +3532,9 @@ async function expectTenantChatPrivacyVisible(scope, visible) {
|
|
|
3532
3532
|
}
|
|
3533
3533
|
/** Assert the tenant gate's current state via `aria-checked` on the Radix switch. */
|
|
3534
3534
|
async function expectTenantChatPrivacyEnabled(scope, enabled) {
|
|
3535
|
-
await expect(getTenantChatPrivacySwitch(scope)).toHaveAttribute('aria-checked', String(enabled), {
|
|
3535
|
+
await expect(getTenantChatPrivacySwitch(scope)).toHaveAttribute('aria-checked', String(enabled), {
|
|
3536
|
+
timeout: 10000,
|
|
3537
|
+
});
|
|
3536
3538
|
}
|
|
3537
3539
|
/**
|
|
3538
3540
|
* Flip the tenant gate to the desired state. Idempotent — does nothing if
|