mock-fs-require-fix
Version:
Fork of the tschaub/mock-fs project.
23 lines (16 loc) • 418 B
JavaScript
var assert = require('assert');
var fs = require('fs');
var mock = require('..');
/**
* Timed test. This includes the mock setup and teardown as part of the overall
* test time.
* @param {function(Error)} done Callback.
*/
exports.test = function(done) {
mock();
fs.writeFile('foo-mock.txt', 'foo', function(err) {
assert.ifError(err);
mock.restore();
done();
});
};