mirror of
https://github.com/bitwarden/browser
synced 2026-01-31 00:33:33 +00:00
SendsV2 -> SendV2
This commit is contained in:
@@ -52,7 +52,7 @@ import { VaultComponent } from "../vault/app/vault-v3/vault.component";
|
||||
import { Fido2PlaceholderComponent } from "./components/fido2placeholder.component";
|
||||
import { DesktopLayoutComponent } from "./layout/desktop-layout.component";
|
||||
import { SendComponent } from "./tools/send/send.component";
|
||||
import { SendsV2Component } from "./tools/send-v2/send-v2.component";
|
||||
import { SendV2Component } from "./tools/send-v2/send-v2.component";
|
||||
|
||||
/**
|
||||
* Data properties acceptable for use in route objects in the desktop
|
||||
@@ -344,7 +344,7 @@ const routes: Routes = [
|
||||
},
|
||||
{
|
||||
path: "new-sends",
|
||||
component: SendsV2Component,
|
||||
component: SendV2Component,
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
import { ComponentFixture, TestBed } from "@angular/core/testing";
|
||||
|
||||
import { SendsV2Component } from "./send-V2.component";
|
||||
import { SendV2Component } from "./send-V2.component";
|
||||
|
||||
describe("SendsV2Component", () => {
|
||||
let component: SendsV2Component;
|
||||
let fixture: ComponentFixture<SendsV2Component>;
|
||||
describe("SendV2Component", () => {
|
||||
let component: SendV2Component;
|
||||
let fixture: ComponentFixture<SendV2Component>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [SendsV2Component],
|
||||
imports: [SendV2Component],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(SendsV2Component);
|
||||
fixture = TestBed.createComponent(SendV2Component);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
@@ -6,4 +6,4 @@ import { Component, ChangeDetectionStrategy } from "@angular/core";
|
||||
template: "<p>Sends V2 Component</p>",
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class SendsV2Component {}
|
||||
export class SendV2Component {}
|
||||
|
||||
Reference in New Issue
Block a user