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

import isFuture from '.'

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