-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhance test suites, improve coverage, and refactor error handling (#44)
- f825834 - ci(irltest): Remove inputs for workflow dispatch - 9048231 - ci(coverage): Add step to set up FFmpeg - dcc6b38 - ci(irltest): Add step to set up FFmpeg - f0b51fd - ci: Streamline coverage workflow and re-enable IRL tests - f2d68ec - chore(pkg): Update the script for collecting coverage - 2fe6eea - chore(eslint): Ignore the `.mocharc.js` file - adb0245 - fix(lint): Address several lint issues - c96e168 - chore(nyc): Enforce coverage checks and update NYC config - 1132e9d - test(irl): Refactor integration tests and fix error handling - 78c929d - test(ytmp3): Add test suite for `ytmp3` module - 61db2b6 - test(audioconv): Add unit tests for `convertAudio` - 1e5d2ef - test(audioconv): Enhance test suites and coverage - 8b095f9 - test(config): Enhance test suite and coverage - ec54aa7 - test(utils): Enhance tests for `ProgressBar` and log creation - 43c89e5 - test(url-utils): Improve test coverage and validation checks Signed-off-by: Ryuu Mitsuki <dhefam31@gmail.com>
- Loading branch information
Showing
15 changed files
with
1,021 additions
and
148 deletions.
There are no files selected for viewing
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
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,33 @@ | ||
module.exports = { | ||
// Executions | ||
bail: false, | ||
parallel: false, | ||
jobs: 1, | ||
retries: 0, | ||
color: true, | ||
reporter: 'spec', | ||
'node-option': [], | ||
// Diffs | ||
diff: false, | ||
'inline-diffs': true, | ||
'full-trace': false, // Enable this if want to more verbose in debugging | ||
// Files | ||
recursive: true, | ||
extensions: [ | ||
'.spec.js', '.spec.cjs', '.spec.mjs', | ||
'.test.js', '.test.cjs', '.test.mjs' | ||
], | ||
ignore: [ | ||
'test/assets/**', | ||
'tmp/**', | ||
'coverage/**', | ||
'docs/**' | ||
], | ||
// Restrictions | ||
global: [], | ||
'check-leaks': false, | ||
'allow-uncaught': false, | ||
'async-only': false, | ||
'forbid-only': true, | ||
'forbid-pending': false | ||
}; |
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
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
Binary file not shown.
Oops, something went wrong.