zgo/src/app/tips/tips.component.spec.ts

22 lines
545 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { TipsComponent } from './tips.component';
describe('TipsComponent', () => {
let component: TipsComponent;
let fixture: ComponentFixture<TipsComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [TipsComponent]
});
fixture = TestBed.createComponent(TipsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});