Files
talenttic-crm-app/src/app/layouts/auth-layout/auth-layout.component.spec.ts
2023-04-25 09:17:32 +01:00

26 lines
657 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AuthLayoutComponent } from './auth-layout.component';
describe('AuthLayoutComponent', () => {
let component: AuthLayoutComponent;
let fixture: ComponentFixture<AuthLayoutComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AuthLayoutComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AuthLayoutComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});