2024-11-19 11:32:02 +01:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { TestComponent } from './test.component';
|
|
|
|
|
|
|
|
describe('TestComponent', () => {
|
|
|
|
let component: TestComponent;
|
|
|
|
let fixture: ComponentFixture<TestComponent>;
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
await TestBed.configureTestingModule({
|
2025-01-28 08:27:37 +01:00
|
|
|
imports: [TestComponent],
|
|
|
|
}).compileComponents();
|
2024-11-19 11:32:02 +01:00
|
|
|
|
|
|
|
fixture = TestBed.createComponent(TestComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|