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

26 lines
619 B
TypeScript
Raw Normal View History

2022-01-28 20:03:05 +00:00
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { TermsComponent } from './terms.component';
describe('TermsComponent', () => {
let component: TermsComponent;
let fixture: ComponentFixture<TermsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ TermsComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(TermsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});