mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-02 10:00:17 +05:30
Major Features: - Integrated PDF viewer with zoom, page navigation, and fit modes - PDF editor toolbar with direct access to all PDF operations - New app branding with docico1.png icon - ConcreteInfo theme (light & dark variants) - Comprehensive PDF editing: merge, split, compress, rotate, delete, reorder - Watermark, encrypt, decrypt, and permissions management - Overwrite original file option for all PDF operations UI Improvements: - PDF viewer takes full screen when active (hides tabs and toolbar) - Compact modals with reduced font sizes - Dark theme fixes for icons and dialogs - Save/Save As options for PDF operations - Improved PDF toolbar theming Technical: - Added isPdfViewerActive state tracking - Proper PDF document lifecycle management - Fixed hang issues when switching between PDF and markdown - All dependencies are open-source (MIT, Apache 2.0, BSD) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
60 lines
1.0 KiB
JavaScript
60 lines
1.0 KiB
JavaScript
/**
|
|
* Jest Configuration for PanConverter
|
|
* @version 2.2.0
|
|
*/
|
|
|
|
module.exports = {
|
|
// Test environment
|
|
testEnvironment: 'jsdom',
|
|
|
|
// Root directory
|
|
rootDir: '.',
|
|
|
|
// Test file patterns
|
|
testMatch: [
|
|
'**/tests/**/*.test.js',
|
|
'**/tests/**/*.spec.js'
|
|
],
|
|
|
|
// Coverage configuration
|
|
collectCoverageFrom: [
|
|
'src/**/*.js',
|
|
'!src/main.js', // Main process needs electron-mock
|
|
'!**/node_modules/**'
|
|
],
|
|
|
|
// Coverage thresholds (start low, increase over time)
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 10,
|
|
functions: 10,
|
|
lines: 10,
|
|
statements: 10
|
|
}
|
|
},
|
|
|
|
// Transform settings (no transpilation needed for vanilla JS)
|
|
transform: {},
|
|
|
|
// Module paths
|
|
moduleDirectories: ['node_modules', 'src'],
|
|
|
|
// Setup files
|
|
setupFilesAfterEnv: ['<rootDir>/tests/setup.js'],
|
|
|
|
// Ignore patterns
|
|
testPathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'/dist/'
|
|
],
|
|
|
|
// Verbose output
|
|
verbose: true,
|
|
|
|
// Clear mocks between tests
|
|
clearMocks: true,
|
|
|
|
// Reset modules between tests
|
|
resetModules: true
|
|
};
|