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

/* global suite, benchmark */

import isThisQuarter from '.'

suite(
  'isThisQuarter',
  () => {
    benchmark('date-fns', function() {
      return isThisQuarter(this.date)
    })
  },
  {
    setup: function() {
      this.date = new Date()
    }
  }
)