Code cleanup

Signed-off-by: trivernis <trivernis@protonmail.com>
pull/16/head
trivernis 2 years ago
parent 9c9c861a08
commit 68ef43be12
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -39,9 +39,9 @@ import {MatToolbarModule} from "@angular/material/toolbar";
import {
RepositoryDetailsViewComponent
} from "./repositories-tab/repository-details-view/repository-details-view.component";
import { EmptyTabComponent } from './empty-tab/empty-tab.component';
import { RepositoryOverviewComponent } from './repositories-tab/repository-overview/repository-overview.component';
import { AboutDialogComponent } from './repositories-tab/repository-overview/about-dialog/about-dialog.component';
import {EmptyTabComponent} from "./empty-tab/empty-tab.component";
import {RepositoryOverviewComponent} from "./repositories-tab/repository-overview/repository-overview.component";
import {AboutDialogComponent} from "./repositories-tab/repository-overview/about-dialog/about-dialog.component";
@NgModule({

@ -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…
Cancel
Save