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

import setMinutes from '.'
import moment from 'moment'

suite('setMinutes', function () {
  benchmark('date-fns', function () {
    return setMinutes(this.date, 45)
  })

  benchmark('Moment.js', function () {
    return this.moment.minutes(45)
  })
}, {
  setup: function () {
    this.date = new Date()
    this.moment = moment()
  }
})