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 b41f573 commit 11215c0Copy full SHA for 11215c0
packages/create/tests/template.test.ts
@@ -1,8 +1,8 @@
1
import { expect, it } from "vitest";
2
import { createVanilla } from "../src";
3
import { existsSync } from "fs";
4
-it("downloads and extracts the typescript template", async () => {
5
- await createVanilla({ template: "ts", destination: "./test/ts" }, false);
+it("downloads and extracts the basic template", async () => {
+ await createVanilla({ template: "basic", destination: "./test/ts" }, false);
6
7
const appTsx = existsSync("./test/ts/src/App.tsx");
8
expect(appTsx).toBe(true);
0 commit comments