todo unit tests
This commit is contained in:
parent
24dc869447
commit
7741e87f3b
3 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
describe("insurance-company-question.vue", () => {
|
||||
it.todo("Some test for the future");
|
||||
});
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
describe("insurance-company.vue", () => {
|
||||
it.todo("Some test for the future");
|
||||
});
|
||||
Loading…
Reference in a new issue