We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2f143c commit c9d2169Copy full SHA for c9d2169
examples/with-typescript-esm/src/fibonacci.bench.ts
@@ -1,8 +1,8 @@
1
import { bench, describe } from "vitest";
2
-import { iterativeFibonacci } from "./fibonacci";
+import { recursiveFibonacci } from "./fibonacci";
3
4
-describe("iterativeFibonacci", () => {
5
- bench("fibo 10", () => {
6
- iterativeFibonacci(10);
+describe("recursiveFibonacci", () => {
+ bench("fibo 30", () => {
+ recursiveFibonacci(30);
7
});
8
0 commit comments