pc-home.spec.ts 529 B

1234567891011121314151617181920212223
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { PcHome } from './pc-home';
  3. describe('PcHome', () => {
  4. let component: PcHome;
  5. let fixture: ComponentFixture<PcHome>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. imports: [PcHome]
  9. })
  10. .compileComponents();
  11. fixture = TestBed.createComponent(PcHome);
  12. component = fixture.componentInstance;
  13. fixture.detectChanges();
  14. });
  15. it('should create', () => {
  16. expect(component).toBeTruthy();
  17. });
  18. });