blob: 0ad9d9fdd42e76e02fe5d917cc764897e3fd1b58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import test from 'ava'
import * as at from './dist'
test('getFinnQuote returns a string', (t) => {
t.is(typeof at.getFinnQuote(), 'string')
})
test('getJakeQuote returns a string', (t) => {
t.is(typeof at.getJakeQuote(), 'string')
})
test('getIceKingQuote returns a string', (t) => {
t.is(typeof at.getIceKingQuote(), 'string')
})
test('getQuote returns a string', (t) => {
t.is(typeof at.getQuote(), 'string')
})
|