tunnckoCore/kind-of-types

View on GitHub
test.js

Summary

Maintainability
A
0 mins
Test Coverage
/*!
 * kind-of-types <https://github.com/tunnckoCore/kind-of-types>
 *
 * Copyright (c) 2015 Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)
 * Released under the MIT license.
 */

/* jshint asi:true */

'use strict'

var test = require('assertit')
var types = require('./index')

test('kind-of-types', function (done) {
  test.equal(types.length > 20, true)
  done()
})
test('sorted alphabetically', function (done) {
  test.equal(types[0], 'array')
  done()
})