mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-01-12 15:18:24 -05:00
* fix(commitlint/utils.ts): correct variable used in search for JSON block end tag * ♻️ (commitlint/config.ts & pwd-commitlint.ts): Refactor commitlint config loading to support both CJS and ESM modules 💡 (pwd-commitlint.ts): Add detailed comments and error handling for better clarity and robustness in commitlint module loading process * ✨ (package.json): Add setup script for e2e tests to install dependencies for commitlint configurations 🔧 (setup.sh): Add shell script to set up commitlint configurations for e2e tests * ✨ (config.ts): Add support for OCO_TEST_MOCK_TYPE configuration key to define test mock type for testing purposes 📝 (config.ts): Update documentation for OCO_TEST_MOCK_TYPE configuration key in configValidators and getConfig functions 📝 (testAi.ts): Add TEST_MOCK_TYPES constant array to define supported test mock types 📝 (testAi.ts): Update generateCommitMessage function to use OCO_TEST_MOCK_TYPE from config for different test mock types 📝 (commitlint.test.ts): Add e2e test for running "oco commitlint force" with different @commitlint versions using CJS and ESM 📝 (utils.ts): Add wait function to introduce delay in milliseconds for testing purposes * ✨ (commitlint.test.ts): refactor setupCommitlint function to accept a version parameter for better code organization and readability 📝 (commitlint.test.ts): add test case for commitlint@9 using CJS to ensure proper functionality and compatibility 📝 (commitlint.test.ts): add test case for commitlint@18 using CJS to ensure proper functionality and compatibility 📝 (commitlint.test.ts): add test case for commitlint@19 using ESM to ensure proper functionality and compatibility * 🔧 (commitlint.test.ts): remove unnecessary commands to create and add index.ts file before running tests * refactor(test/e2e/prompt-module/commitlint.test.ts): remove unused import configure style(test/e2e/prompt-module/commitlint.test.ts): add missing semicolon for consistency test(test/e2e/prompt-module/commitlint.test.ts): add e2e tests for @commitlint prompt-module integration * ✨ (e2e tests): add package.json copying to setupCommitlint for version accuracy ♻️ (commitlint config): refactor commitlint.config.js to use ES module syntax ✨ (package.json): specify "type": "module" to support ES module syntax
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import path from 'path'
|
|
import { mkdtemp, rm } from 'fs'
|
|
import { promisify } from 'util';
|
|
import { tmpdir } from 'os';
|
|
import { exec } from 'child_process';
|
|
const fsMakeTempDir = promisify(mkdtemp);
|
|
const fsExec = promisify(exec);
|
|
const fsRemove = promisify(rm);
|
|
|
|
/**
|
|
* Prepare the environment for the test
|
|
* Create a temporary git repository in the temp directory
|
|
*/
|
|
export const prepareEnvironment = async (): Promise<{
|
|
gitDir: string;
|
|
cleanup: () => Promise<void>;
|
|
}> => {
|
|
const tempDir = await fsMakeTempDir(path.join(tmpdir(), 'opencommit-test-'));
|
|
// Create a remote git repository int the temp directory. This is necessary to execute the `git push` command
|
|
await fsExec('git init --bare remote.git', { cwd: tempDir });
|
|
await fsExec('git clone remote.git test', { cwd: tempDir });
|
|
const gitDir = path.resolve(tempDir, 'test');
|
|
|
|
const cleanup = async () => {
|
|
return fsRemove(tempDir, { recursive: true });
|
|
}
|
|
return {
|
|
gitDir,
|
|
cleanup,
|
|
}
|
|
}
|
|
|
|
export const wait = (ms: number) => new Promise(resolve => setTimeout(resolve, ms));
|