11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
const expect = require('expect');
|
|
const JSONToFile = require('./JSONToFile.js');
|
|
|
|
|
|
test('JSONToFile is a Function', () => {
|
|
expect(JSONToFile).toBeInstanceOf(Function);
|
|
});
|
|
t.pass('Tested on 09/02/2018 by @chalarangelo');
|
|
|
|
|