test(#776): add regression test for issue #776

This commit is contained in:
Ben Heidemann 2021-04-18 14:23:23 +01:00 committed by David Humphrey
parent bd15462f6e
commit aa2df3a17c
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ describe('fs.mkdir does not recursively create parent directories when called wi
beforeEach(util.setup);
afterEach(util.cleanup);
it.skip('should not throw when calling fs.mkdir with recursive flag set', function(done) {
it('should not throw when calling fs.mkdir with recursive flag set', function(done) {
const fs = util.fs();
fs.mkdir('/test_dir/a/b', { recursive: true }, done);
});