summaryrefslogtreecommitdiff
path: root/date-fns/src/isThisWeek/benchmark.js
blob: ac9676ff0dca12273e8b5b4ea9a6448a8c8bff3a (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 isThisWeek from '.'

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