diff options
Diffstat (limited to 'node_modules/at-quotes/test.js')
| -rw-r--r-- | node_modules/at-quotes/test.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/at-quotes/test.js b/node_modules/at-quotes/test.js new file mode 100644 index 0000000..0ad9d9f --- /dev/null +++ b/node_modules/at-quotes/test.js @@ -0,0 +1,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') +}) |