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 2eacc08031
commit d112e61d4d

View File

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