Skip to content

Commit b2a3e05

Browse files
committed
test: fix tests
1 parent 24eb394 commit b2a3e05

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/modules/common/calendar-common.module.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ export {
4343
* Import this module to if you're just using a singular view and want to save on bundle size. Example usage:
4444
*
4545
* ```typescript
46-
* import { CalendarCommonModule } from 'angular-calendar/modules/common';
47-
* import { CalendarMonthModule } from 'angular-calendar/modules/month';
46+
* import { CalendarCommonModule, CalendarMonthModule } from 'angular-calendar';
4847
*
4948
* @NgModule({
5049
* imports: [

test/calendar-month-view.component.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ import {
2121
DAYS_OF_WEEK,
2222
CalendarEventTimesChangedEvent,
2323
CalendarMonthViewComponent,
24-
DateAdapter
24+
DateAdapter,
25+
CalendarMonthViewEventTimesChangedEvent
2526
} from '../src';
2627
import { Subject } from 'rxjs';
2728
import { triggerDomEvent } from './util';
2829
import { take } from 'rxjs/operators';
29-
import { CalendarMonthViewEventTimesChangedEvent } from '../src/modules/month';
3030
import { adapterFactory } from '../src/date-adapters/date-fns';
3131

3232
describe('calendarMonthView component', () => {

0 commit comments

Comments
 (0)