Autofix lint issues

This commit is contained in:
Yury Bondarenko
2024-03-06 10:30:19 +01:00
parent dbf7fd67fd
commit 2b540cd91c
483 changed files with 9002 additions and 4652 deletions

View File

@@ -1,6 +1,11 @@
import { ComponentFixture, fakeAsync, TestBed, tick } from '@angular/core/testing';
import {
ComponentFixture,
fakeAsync,
TestBed,
tick,
} from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { ObjectTableComponent } from './object-table.component';
describe('ObjectTableComponent', () => {
@@ -11,9 +16,9 @@ describe('ObjectTableComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ObjectTableComponent ]
declarations: [ ObjectTableComponent ],
})
.compileComponents();
.compileComponents();
fixture = TestBed.createComponent(ObjectTableComponent);
component = fixture.componentInstance;