Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vitest optimizations and CI integration #4108

Merged
merged 5 commits into from
Jan 24, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Vitest: Silence development mode warnings
  • Loading branch information
lukasbestle committed Jan 23, 2022
commit 94ef31b229e79ae0507093171f0b7488155f401f
3 changes: 2 additions & 1 deletion panel/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ export default defineConfig(({ command }) => {
extension: ["js", "vue"],
src: "src",
reporter: ["text", "lcov"]
}
},
setupFiles: ["vitest.setup.js"]
}
};
});
4 changes: 4 additions & 0 deletions panel/vitest.setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import Vue from "vue";

Vue.config.productionTip = false;
Vue.config.devtools = false;