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 { import {
RepositoryDetailsViewComponent RepositoryDetailsViewComponent
} from "./repositories-tab/repository-details-view/repository-details-view.component"; } from "./repositories-tab/repository-details-view/repository-details-view.component";
import { EmptyTabComponent } from './empty-tab/empty-tab.component'; import {EmptyTabComponent} from "./empty-tab/empty-tab.component";
import { RepositoryOverviewComponent } from './repositories-tab/repository-overview/repository-overview.component'; import {RepositoryOverviewComponent} from "./repositories-tab/repository-overview/repository-overview.component";
import { AboutDialogComponent } from './repositories-tab/repository-overview/about-dialog/about-dialog.component'; import {AboutDialogComponent} from "./repositories-tab/repository-overview/about-dialog/about-dialog.component";
@NgModule({ @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', () => { 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…
Cancel
Save