Skip to content

Commit

Permalink
test: remove local test
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun committed Mar 21, 2019
1 parent 0f692c5 commit 0edabcd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/plugin/quarterOfYear.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ it('get QuarterOfYear', () => {

it('set QuarterOfYear', () => {
const d1 = '2013-01-01T00:00:00.000'
expect(dayjs(d1).quarter(2).valueOf()).toBe(1364745600000)
expect(dayjs(d1).quarter(2).format())
.toBe(moment(d1).quarter(2).format())
const d2 = '2013-02-05T05:06:07.000'
expect(dayjs(d2).quarter(2).valueOf()).toBe(1367701567000)
expect(dayjs(d2).quarter(2).format())
.toBe(moment(d2).quarter(2).format())
})
Expand Down

0 comments on commit 0edabcd

Please sign in to comment.