/** * 测试 changelogen 的 emoji commit 解析功能 * * 验证各种提交格式是否能够被正确解析: * - gitmoji 代码格式: :sparkles: feat: description * - Unicode emoji 格式: ✨ feat: description * - 带作用域: 🐞 fix(scope): description * - 标准格式: feat(scope): description */ /** * 运行所有测试 */ declare function runAllTests(): boolean; export { runAllTests };