Skip to content

Commit

Permalink
Modularizes the Client class
Browse files Browse the repository at this point in the history
  • Loading branch information
douglance committed Jun 17, 2022
1 parent 8584707 commit 21e2a50
Show file tree
Hide file tree
Showing 30 changed files with 2,490 additions and 1,235 deletions.
22 changes: 22 additions & 0 deletions patches/vitest+0.15.1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
diff --git a/node_modules/vitest/dist/chunk-vite-node-externalize.105bc106.mjs b/node_modules/vitest/dist/chunk-vite-node-externalize.105bc106.mjs
index e699878..a8e6cb0 100644
--- a/node_modules/vitest/dist/chunk-vite-node-externalize.105bc106.mjs
+++ b/node_modules/vitest/dist/chunk-vite-node-externalize.105bc106.mjs
@@ -7264,7 +7264,7 @@ function getStateSymbol(task) {
spinner = elegantSpinner();
spinnerMap.set(task, spinner);
}
- return picocolors.exports.yellow(spinner());
+ return picocolors.exports.yellow("⇒");
}
if (task.result.state === "pass")
return picocolors.exports.green(F_CHECK);
@@ -7287,7 +7287,7 @@ function getHookStateSymbol(task, hookName) {
spinner = elegantSpinner();
spinnerMap2.set(hookName, spinner);
}
- return picocolors.exports.yellow(spinner());
+ return picocolors.exports.yellow("⇒");
}
}
const spinnerFrames = process.platform === "win32" ? ["-", "\\", "|", "/"] : ["\u280B", "\u2819", "\u2839", "\u2838", "\u283C", "\u2834", "\u2826", "\u2827", "\u2807", "\u280F"];
Loading

0 comments on commit 21e2a50

Please sign in to comment.