Skip to content

Commit

Permalink
fix(testing): do not error when no vite config is found
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo committed May 3, 2023
1 parent 8dec11e commit 36cbaaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite/src/executors/test/vitest.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ async function getSettings(

if (!viteConfigPath || !resolved?.config?.test) {
logger.warn(stripIndents`Unable to load test config from config file ${
resolved.path ?? viteConfigPath
resolved?.path ?? viteConfigPath
}
Some settings may not be applied as expected.
You can manually set the config in the project, ${
Expand Down

0 comments on commit 36cbaaf

Please sign in to comment.