ekart/src/app/features/login/login.spec.ts
2026-02-19 12:06:30 +05:30

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();
});
});