We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17cdba5 commit f950b51Copy full SHA for f950b51
1 file changed
packages/commands/tests/config_manipulation.test.ts
@@ -46,7 +46,7 @@ vi.mock("@solid-cli/utils/updates", async () => {
46
47
vi.mock("../src/lib/utils/helpers.ts", async () => {
48
return {
49
- getConfigFile: async (file): Promise<string> => new Promise((r) => r(`${file}.config.ts`)),
+ getConfigFile: async (): Promise<string> => new Promise((r) => r("app.config.ts")),
50
fileExists: (path: string) => path.includes("app_config") || path.includes("app.tsx") || path.includes("index.tsx"),
51
getRootFile: async (): Promise<string> => new Promise((r) => r("./src/app.tsx")),
52
};
0 commit comments