Rename createDirIfNotExists.js to createDirIfNotExists.test.js

This commit is contained in:
Angelos Chalaris
2018-12-12 19:33:17 +02:00
committed by GitHub
parent 96e42eb2b3
commit 6cae953d28

View File

@ -0,0 +1,6 @@
const expect = require('expect');
const {createDirIfNotExists} = require('./_30s.js');
test('createDirIfNotExists is a Function', () => {
expect(createDirIfNotExists).toBeInstanceOf(Function);
});