summaryrefslogtreecommitdiff
path: root/date-fns/src/isWednesday/benchmark.js
blob: 80a6c1e409a3412b5bc0e11718efae9b3611d494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// @flow
/* eslint-env mocha */
/* global suite, benchmark */

import isWednesday from '.'

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