exprexo/exprexo

View on GitHub
test/lib/quotes.test.js

Summary

Maintainability
A
0 mins
Test Coverage
const test = require('tape')
const quotes = require('../../lib/quotes')

test('quotes: should be able to return a random quote', (t) => {
  const actual = typeof quotes.say()
  const expected = 'string'
  t.equal(actual, expected)
  t.end()
})