1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

Updated stories to hard-code new field.

This commit is contained in:
Todd Martin
2025-12-10 17:04:30 -05:00
parent 25603842fe
commit ed88b5f047
3 changed files with 18 additions and 17 deletions

View File

@@ -22,7 +22,6 @@ import {
} from "@bitwarden/common/platform/abstractions/environment.service"; } from "@bitwarden/common/platform/abstractions/environment.service";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service"; import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service"; import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { mockAccountInfoWith } from "@bitwarden/common/spec";
import { UserId } from "@bitwarden/common/types/guid"; import { UserId } from "@bitwarden/common/types/guid";
import { AnonLayoutWrapperDataService, ButtonModule, I18nMockService } from "@bitwarden/components"; import { AnonLayoutWrapperDataService, ButtonModule, I18nMockService } from "@bitwarden/components";
@@ -77,12 +76,14 @@ const decorators = (options: {
{ {
provide: AccountService, provide: AccountService,
useValue: { useValue: {
// We can't use mockAccountInfoWith() here because we can't take a dependency on @bitwarden/common/spec.
// This is because that package relies on jest dependencies that aren't available here.
activeAccount$: of({ activeAccount$: of({
id: "test-user-id" as UserId, id: "test-user-id" as UserId,
...mockAccountInfoWith({ name: "Test User 1",
name: "Test User 1", email: "test@email.com",
email: "test@email.com", emailVerified: true,
}), creationDate: "2024-01-01T00:00:00.000Z",
}), }),
}, },
}, },

View File

@@ -15,7 +15,6 @@ import { ConfigService } from "@bitwarden/common/platform/abstractions/config/co
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service"; import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service"; import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { SyncService } from "@bitwarden/common/platform/sync"; import { SyncService } from "@bitwarden/common/platform/sync";
import { mockAccountInfoWith } from "@bitwarden/common/spec";
import { UserId } from "@bitwarden/common/types/guid"; import { UserId } from "@bitwarden/common/types/guid";
import { LayoutComponent, NavigationModule } from "@bitwarden/components"; import { LayoutComponent, NavigationModule } from "@bitwarden/components";
// FIXME: remove `src` and fix import // FIXME: remove `src` and fix import
@@ -76,13 +75,14 @@ class MockSyncService implements Partial<SyncService> {
} }
class MockAccountService implements Partial<AccountService> { class MockAccountService implements Partial<AccountService> {
// We can't use mockAccountInfoWith() here because we can't take a dependency on @bitwarden/common/spec.
// This is because that package relies on jest dependencies that aren't available here.
activeAccount$?: Observable<Account> = of({ activeAccount$?: Observable<Account> = of({
id: "test-user-id" as UserId, id: "test-user-id" as UserId,
...mockAccountInfoWith({ name: "Test User 1",
email: "test@email.com", email: "test@email.com",
name: "Test User 1", emailVerified: true,
emailVerified: true, creationDate: "2024-01-01T00:00:00.000Z",
}),
}); });
} }

View File

@@ -16,7 +16,6 @@ import { ConfigService } from "@bitwarden/common/platform/abstractions/config/co
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service"; import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service"; import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { SyncService } from "@bitwarden/common/platform/sync"; import { SyncService } from "@bitwarden/common/platform/sync";
import { mockAccountInfoWith } from "@bitwarden/common/spec";
import { UserId } from "@bitwarden/common/types/guid"; import { UserId } from "@bitwarden/common/types/guid";
import { IconButtonModule, LinkModule, MenuModule } from "@bitwarden/components"; import { IconButtonModule, LinkModule, MenuModule } from "@bitwarden/components";
// FIXME: remove `src` and fix import // FIXME: remove `src` and fix import
@@ -76,13 +75,14 @@ class MockSyncService implements Partial<SyncService> {
} }
class MockAccountService implements Partial<AccountService> { class MockAccountService implements Partial<AccountService> {
// We can't use mockAccountInfoWith() here because we can't take a dependency on @bitwarden/common/spec.
// This is because that package relies on jest dependencies that aren't available here.
activeAccount$?: Observable<Account> = of({ activeAccount$?: Observable<Account> = of({
id: "test-user-id" as UserId, id: "test-user-id" as UserId,
...mockAccountInfoWith({ name: "Test User 1",
email: "test@email.com", email: "test@email.com",
name: "Test User 1", emailVerified: true,
emailVerified: true, creationDate: "2024-01-01T00:00:00.000Z",
}),
}); });
} }