Skip to content

Commit

Permalink
style: Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Jul 15, 2020
1 parent 4a44d4b commit 8d269f9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions test/is-symlink.js
Expand Up @@ -11,12 +11,14 @@ var rootPath = resolve(__dirname, "./__playground/is-symlink")
, symlink2 = resolve(rootPath, "sym2");

module.exports = function (t, a, d) {
symlink(targetFile, symlink1)(function () { return symlink(symlink1, symlink2); })(function () {
return t(symlink2);
})(function (result) {
a(result, true);
return t(symlink2, { linkPath: targetFile });
})(function (result) {
symlink(
targetFile, symlink1
)(function () { return symlink(symlink1, symlink2); })(function () { return t(symlink2); })(
function (result) {
a(result, true);
return t(symlink2, { linkPath: targetFile });
}
)(function (result) {
a(result, false);
return t(symlink2, { linkPath: symlink1 });
})(function (result) {
Expand Down

0 comments on commit 8d269f9

Please sign in to comment.