From a0b01ec1d8c5bf67be6cf67c93ec24df57e40600 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 23 Dec 2016 10:15:39 +0700 Subject: [PATCH] Test expired.in is a function --- test/expired.in.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/expired.in.js diff --git a/test/expired.in.js b/test/expired.in.js new file mode 100644 index 0000000..abe040a --- /dev/null +++ b/test/expired.in.js @@ -0,0 +1,6 @@ +import test from 'ava'; +import expired from '../'; + +test('expired.in is a function', t => { + t.is(typeof expired.in, 'function'); +});