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