7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
const expect = require('expect');
|
|
const JSONToFile = require('./JSONToFile.js');
|
|
|
|
test('JSONToFile is a Function', () => {
|
|
expect(JSONToFile).toBeInstanceOf(Function);
|
|
});
|