summaryrefslogtreecommitdiff
path: root/date-fns/src/differenceInWeeks/benchmark.js
blob: c29909c6eea66d4733acb318aa2a3ab49cee9f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// @flow
/* eslint-env mocha */
/* global suite, benchmark */

import differenceInWeeks from '.'
import moment from 'moment'

suite('differenceInWeeks', function () {
  benchmark('date-fns', function () {
    return differenceInWeeks(this.dateA, this.dateB)
  })

  benchmark('Moment.js', function () {
    return this.momentA.diff(this.momentB, 'week')
  })
}, {
  setup: function () {
    this.dateA = new Date()
    this.momentA = moment()
    this.dateB = new Date(this.dateA.getTime() + 604800000)
    this.momentB = this.momentA.clone().add(7, 'days')
  }
})