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