23 lines
520 B
TypeScript
23 lines
520 B
TypeScript
import { ComponentFixture, TestBed } from "@angular/core/testing";
|
|
|
|
import { Login } from "./login";
|
|
|
|
describe("Login", () => {
|
|
let component: Login;
|
|
let fixture: ComponentFixture<Login>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Login],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Login);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it("should create", () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|