Files
Imhotep/imhotep.config.js
T

19 lines
393 B
JavaScript
Raw Normal View History

module.exports = {
// Render target for React components
render: {
type: 'component',
framework: 'react',
// Component mount function path (relative to project root)
mount: './tests/mount.js'
},
// Playwright browser configuration
browser: {
viewport: { width: 1280, height: 720 }
},
// Spatial assertion defaults
defaults: {
tolerance: 0.5
}
};