Skip to content

Commit 11215c0

Browse files
committed
test: fix test for downloading templates
1 parent b41f573 commit 11215c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/create/tests/template.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { expect, it } from "vitest";
22
import { createVanilla } from "../src";
33
import { existsSync } from "fs";
4-
it("downloads and extracts the typescript template", async () => {
5-
await createVanilla({ template: "ts", destination: "./test/ts" }, false);
4+
it("downloads and extracts the basic template", async () => {
5+
await createVanilla({ template: "basic", destination: "./test/ts" }, false);
66

77
const appTsx = existsSync("./test/ts/src/App.tsx");
88
expect(appTsx).toBe(true);

0 commit comments

Comments
 (0)