Skip to content

Commit

Permalink
fix(calendar) fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jsprds committed Jul 3, 2018
1 parent 85f3446 commit 12512bd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { Component, DebugElement } from '@angular/core';
import { CalendarMonthComponent } from './month.component';
import { CALENDAR_WEEKDAY_LABELS, CALENDAR_DEFAULT_WEEKDAY_LABELS } from '../../calendar.conf';
import { CalendarService } from '../../services/calendar.service';
import { TitleCasePipe } from '../../pipes/title-case.pipe';

@Component({
selector: 'aui-test',
Expand Down Expand Up @@ -67,7 +66,6 @@ describe('The Calendar Month Component', () => {
declarations: [
TestComponent,
CalendarMonthComponent,
TitleCasePipe,
],
providers: [
{ provide: CALENDAR_WEEKDAY_LABELS, useValue: CALENDAR_DEFAULT_WEEKDAY_LABELS },
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { Component, DebugElement } from '@angular/core';

import { CalendarYearComponent } from './year.component';
import { CALENDAR_MONTH_LABELS, CALENDAR_DEFAULT_MONTH_LABELS } from '../../calendar.conf';
import { CalendarService } from '../../services/calendar.service';
import { TitleCasePipe } from '../../pipes/title-case.pipe';

@Component({
selector: 'aui-test',
Expand Down Expand Up @@ -39,7 +36,6 @@ describe('The Calendar Year Component', () => {
declarations: [
TestComponent,
CalendarYearComponent,
TitleCasePipe,
],
providers: [
{ provide: CALENDAR_MONTH_LABELS, useValue: CALENDAR_DEFAULT_MONTH_LABELS },
Expand Down

0 comments on commit 12512bd

Please sign in to comment.