🚨 Prettier

develop
Nato Boram 2022-05-13 10:32:26 -04:00
parent e0a31d84a6
commit 273b416216
No known key found for this signature in database
GPG Key ID: 478E3C64BF88AFFA
3 changed files with 13 additions and 17 deletions

View File

@ -3,14 +3,12 @@ import { RouterTestingModule } from "@angular/router/testing"
import { AppComponent } from "./app.component"
describe("AppComponent", (): void => {
beforeEach(
waitForAsync((): void => {
void TestBed.configureTestingModule({
imports: [RouterTestingModule],
declarations: [AppComponent],
}).compileComponents()
})
)
beforeEach(waitForAsync((): void => {
void TestBed.configureTestingModule({
imports: [RouterTestingModule],
declarations: [AppComponent],
}).compileComponents()
}))
it("should create the app", (): void => {
const fixture = TestBed.createComponent(AppComponent)

View File

@ -7,14 +7,12 @@ describe("PagesComponent", (): void => {
let component: PagesComponent
let fixture: ComponentFixture<PagesComponent>
beforeEach(
waitForAsync((): void => {
void TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
declarations: [PagesComponent],
}).compileComponents()
})
)
beforeEach(waitForAsync((): void => {
void TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
declarations: [PagesComponent],
}).compileComponents()
}))
beforeEach((): void => {
fixture = TestBed.createComponent(PagesComponent)