forked from di-sukharev/opencommit
-
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.
📝 ドキュメントと設定の改善(複数ファイル): より明確で正確なドキュメントと設定ファイルを作成し単体テストをパスするようにしました
いくつかのドキュメントを更新し、設定ファイルの変数名をより明確で理解しやすいものに変更しました。また、不要なコメントを削除し、コードのスタイルを統一しました。これにより、プロジェクトの可読性と保守性が向上します。 📝 Documentation and configuration improvements (multiple files): Improved clarity and accuracy of documentation and configuration files for pass unit test Updated several documentation sections and renamed configuration variables for better clarity and understanding. Removed unnecessary comments and standardized code style. This improves the readability and maintainability of the project.
- Loading branch information
Showing
17 changed files
with
84,350 additions
and
98,415 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** @type {import('ts-jest').JestConfigWithTsJest} **/ | ||
import { createJsWithTsEsmPreset } from 'ts-jest' | ||
|
||
const presetConfig = createJsWithTsEsmPreset({ | ||
//...options | ||
// tsconfig: | ||
// isolatedModules: | ||
// compiler: | ||
// astTransformers: | ||
diagnostics: false, | ||
// stringifyContentPathRegex: | ||
}) | ||
|
||
export default { | ||
testEnvironment: "node", | ||
transform: { | ||
"^.+.tsx?$": ["ts-jest",{}], | ||
}, | ||
|
||
testTimeout: 100_000, | ||
coverageProvider: 'v8', | ||
moduleDirectories: ['node_modules', 'src'], | ||
...presetConfig, | ||
setupFilesAfterEnv: ['<rootDir>/test/jest-setup.ts'], | ||
testRegex: ['.*\\.test\\.ts$'], | ||
transformIgnorePatterns: ['node_modules/(?!cli-testing-library)'], | ||
}; |
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
Oops, something went wrong.