1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

[PM-27792] Scaffold layout desktop migration (#17658)

Introduces foundational scaffolding for the Bitwarden Desktop application UI migration
This commit is contained in:
Isaac Ivins
2025-12-01 13:04:07 -05:00
committed by GitHub
parent be00be8fd8
commit d05356dbeb
13 changed files with 278 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { SendV2Component } from "./send-v2.component";
describe("SendV2Component", () => {
let component: SendV2Component;
let fixture: ComponentFixture<SendV2Component>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [SendV2Component],
}).compileComponents();
fixture = TestBed.createComponent(SendV2Component);
component = fixture.componentInstance;
fixture.detectChanges();
});
it("creates component", () => {
expect(component).toBeTruthy();
});
});