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