summaryrefslogtreecommitdiff
path: root/date-fns/src/isSameWeek/benchmark.js
blob: 55eabd55ff7deb7147a15ab6652fa333f3dead1e (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 isSameWeek from '.'
import moment from 'moment'

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

  benchmark('Moment.js', function () {
    return this.momentA.isSame(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')
  }
})