Select Git revision
impl-git.component.spec.ts
-
AndiMajore authoredAndiMajore authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
impl-git.component.spec.ts 634 B
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ImplGitComponent } from './impl-git.component';
describe('ImplGitComponent', () => {
let component: ImplGitComponent;
let fixture: ComponentFixture<ImplGitComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ImplGitComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(ImplGitComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});