Skip to content

Commit

Permalink
fix(testing): do not error when no vite config is found (#16746)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo authored May 4, 2023
1 parent 112a77c commit f8fe2a1
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

1 comment on commit f8fe2a1

@vercel
Copy link

@vercel vercel bot commented on f8fe2a1 May 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx-five.vercel.app
nx.dev

Please sign in to comment.