🩹 💚 Stop checking test files for test coverage

pull/19/head
Alexis Drai 2 years ago committed by Alexis Drai
parent 48aa5d58c1
commit 6bb5f81f5f

@ -19,7 +19,7 @@ steps:
-Dsonar.host.url=$${PLUGIN_SONAR_HOST}
-Dsonar.login=$${PLUGIN_SONAR_TOKEN}
-Dsonar.javascript.lcov.reportPaths=./coverage/lcov.info
-Dsonar.exclusions=**/lcov-report/**
-Dsonar.exclusions=**/*.test.tsx,**/*.test.ts,**/*.spec.tsx,**/*.spec.ts,**/lcov-report/**
settings:
sonar_host: https://codefirst.iut.uca.fr/sonar/
sonar_token:

@ -20,6 +20,12 @@
A React Native app for education purposes. Refer
to [instructions here](https://react-native-courses.clubinfo-clermont.fr/docs/notation).
+ [Sketches](#sketches)
- [Trainers](#trainers)
- [Pokemongs](#pokemongs)
- [Moves](#moves)
+ [Using the app](#using-the-app)
## Sketches
This app will contain several "master/detail" tabs. They are as follows.

@ -26,7 +26,13 @@
"firefox",
"safari"
]
}
},
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/?(*.)+(spec|test).ts?(x)",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"dependencies": {
"@expo/webpack-config": "^18.0.1",

Loading…
Cancel
Save