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', () => {
|
describe('DatepickerComponent', () => {
|
||||||
let component: DatepickerComponent;
|
let component: DatepickerComponent;
|
||||||
|
@ -8,7 +8,7 @@ describe('DatepickerComponent', () => {
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ DatepickerComponent ]
|
declarations: [DatepickerComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.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', () => {
|
describe('EventDetailComponent', () => {
|
||||||
let component: EventDetailComponent;
|
let component: EventDetailComponent;
|
||||||
|
@ -8,7 +8,7 @@ describe('EventDetailComponent', () => {
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ EventDetailComponent ]
|
declarations: [EventDetailComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Component, OnInit } from '@angular/core';
|
import {Component, OnInit} from '@angular/core';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-event-detail',
|
selector: 'app-event-detail',
|
||||||
|
@ -7,7 +7,8 @@ import { Component, OnInit } from '@angular/core';
|
||||||
})
|
})
|
||||||
export class EventDetailComponent implements OnInit {
|
export class EventDetailComponent implements OnInit {
|
||||||
|
|
||||||
constructor() { }
|
constructor() {
|
||||||
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
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', () => {
|
describe('ApiService', () => {
|
||||||
let service: ApiService;
|
let service: ApiService;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user