Reformatting
This commit is contained in:
parent
1ce1f1875a
commit
7a2f03c241
|
@ -1,6 +1,6 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
||||
|
||||
import { DatepickerComponent } from './datepicker.component';
|
||||
import {DatepickerComponent} from './datepicker.component';
|
||||
|
||||
describe('DatepickerComponent', () => {
|
||||
let component: DatepickerComponent;
|
||||
|
@ -8,7 +8,7 @@ describe('DatepickerComponent', () => {
|
|||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ DatepickerComponent ]
|
||||
declarations: [DatepickerComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
||||
|
||||
import { EventDetailComponent } from './event-detail.component';
|
||||
import {EventDetailComponent} from './event-detail.component';
|
||||
|
||||
describe('EventDetailComponent', () => {
|
||||
let component: EventDetailComponent;
|
||||
|
@ -8,7 +8,7 @@ describe('EventDetailComponent', () => {
|
|||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ EventDetailComponent ]
|
||||
declarations: [EventDetailComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
import {Component, OnInit} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-event-detail',
|
||||
|
@ -7,7 +7,8 @@ import { Component, OnInit } from '@angular/core';
|
|||
})
|
||||
export class EventDetailComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
constructor() {
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { TestBed } from '@angular/core/testing';
|
||||
import {TestBed} from '@angular/core/testing';
|
||||
|
||||
import { ApiService } from './api.service';
|
||||
import {ApiService} from './api.service';
|
||||
|
||||
describe('ApiService', () => {
|
||||
let service: ApiService;
|
||||
|
|
Loading…
Reference in New Issue
Block a user