todo unit tests

This commit is contained in:
Bryan Mauger 2024-03-26 14:25:43 -04:00
parent 24dc869447
commit 7741e87f3b
3 changed files with 8 additions and 1 deletions

View file

@ -26,12 +26,13 @@ module.exports = {
"!src/layouts/payment-pia-return/*.vue", // Temp test exclusion while in development
"!src/layouts/insurance/*.vue", // Temp test exclusion while in development
"!src/layouts/insurance-company/*.vue", // Temp test exclusion while in development
"!src/layouts/insurance-company/insurance-company-question/*.vue", // Temp test exclusion while in development
// END
], // ! means exclude from coverage.
testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"],
coverageThreshold: {
global: {
statements: 70,
statements: 77,
},
},
// Uncomment this to avoid the massive amount of warnings we are getting for onSubmit and onInvalidSubmit

View file

@ -0,0 +1,3 @@
describe("insurance-company-question.vue", () => {
it.todo("Some test for the future");
});

View file

@ -0,0 +1,3 @@
describe("insurance-company.vue", () => {
it.todo("Some test for the future");
});