parent
9c9c861a08
commit
68ef43be12
@ -1,25 +1,25 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
import {ComponentFixture, TestBed} from "@angular/core/testing";
|
||||||
|
|
||||||
import { RepositoryOverviewComponent } from './repository-overview.component';
|
import {RepositoryOverviewComponent} from "./repository-overview.component";
|
||||||
|
|
||||||
describe('RepositoryOverviewComponent', () => {
|
describe("RepositoryOverviewComponent", () => {
|
||||||
let component: RepositoryOverviewComponent;
|
let component: RepositoryOverviewComponent;
|
||||||
let fixture: ComponentFixture<RepositoryOverviewComponent>;
|
let fixture: ComponentFixture<RepositoryOverviewComponent>;
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ RepositoryOverviewComponent ]
|
declarations: [RepositoryOverviewComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(RepositoryOverviewComponent);
|
fixture = TestBed.createComponent(RepositoryOverviewComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should create', () => {
|
it("should create", () => {
|
||||||
expect(component).toBeTruthy();
|
expect(component).toBeTruthy();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue