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