Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
mengshuicmq committed Jun 18, 2021
1 parent 75a6930 commit 4aba52b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/gantt/src/views/test/week.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ describe('GanttViewWeek', () => {

it(`should has correct view start`, () => {
const startOfWeek = ganttViewWeek.startOf(date.start.date).getUnixTime();
console.log('----start----', startOfWeek);
expect(startOfWeek).toEqual(new GanttDate('2019-12-29 00:00:00').getUnixTime());
});

it(`should has correct view end`, () => {
const endOfWeek = ganttViewWeek.endOf(date.end.date).getUnixTime();
console.log('----end----', endOfWeek);
expect(endOfWeek).toEqual(new GanttDate('2021-01-02 23:59:59').getUnixTime());
});

Expand Down

0 comments on commit 4aba52b

Please sign in to comment.