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

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

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