19 lines
393 B
JavaScript
19 lines
393 B
JavaScript
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
|
|
}
|
|
}; |