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', () => {
|
||||
let component: RepositoryOverviewComponent;
|
||||
let fixture: ComponentFixture<RepositoryOverviewComponent>;
|
||||
describe("RepositoryOverviewComponent", () => {
|
||||
let component: RepositoryOverviewComponent;
|
||||
let fixture: ComponentFixture<RepositoryOverviewComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ RepositoryOverviewComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [RepositoryOverviewComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(RepositoryOverviewComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(RepositoryOverviewComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
it("should create", () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue