🚨 Prettier
parent
e0a31d84a6
commit
273b416216
|
@ -88,4 +88,4 @@
|
|||
"typescript": "~4.5.5"
|
||||
},
|
||||
"private": true
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue