-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve reports loading and clean code
- Improve JUnit test reports loading - Refine file patterns - Load all reports instead of only the first one #2 - Read only top-level `<testsuite>` tags - Exclude some directories from file search - Improve documentation - Clarify explanations about reports loading - Add more examples - Clean code (quotes, semicolons, tests, ...) - Update dependencies - Update ESLint to v9
- Loading branch information
1 parent
c718821
commit 02121f1
Showing
21 changed files
with
279 additions
and
280 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import globals from 'globals'; | ||
import pluginJs from '@eslint/js'; | ||
|
||
export default [ | ||
{ languageOptions: { globals: globals.node } }, | ||
{ languageOptions: { globals: globals.mocha } }, | ||
pluginJs.configs.recommended | ||
]; |
Oops, something went wrong.