We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2bf1ea commit 06b9195Copy full SHA for 06b9195
1 file changed
test/index.js
@@ -1,5 +1,10 @@
1
const emptyDir = require('../');
2
const expect = require('chai').expect;
3
+const fs = require('fs');
4
+
5
+try {
6
+ fs.mkdirSync('./test/empty');
7
+} catch (e) {}
8
9
describe('emptyDir', function () {
10
it('should call back with true if a directory is empty', function (done) {
0 commit comments