all files / tests/ module.js

100% Statements 0/0
100% Branches 0/0
100% Functions 1/1
100% Lines 0/0
1 2 3 4 5 6 7 8               
import * as sgp from '../src';
import test from 'ava';
 
test('module exports', (t) => {
  t.is(typeof sgp.generate, 'function');
  t.is(typeof sgp.hostname, 'function');
});