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

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

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