Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
main(function runTests(err, fixturePaths) {
if (err) {
debug('main', err);
return test.fail();
}
debug('running tests ...');
t.plan(6);
fixturePaths.forEach(testSymlinks.bind(null, t));
async.each(fixturePaths, rimraf, function eachCallback() {
t.end();
});
});
});