mirror of
https://github.com/Redocly/redoc.git
synced 2025-03-11 05:15:46 +03:00
8 lines
275 B
JavaScript
8 lines
275 B
JavaScript
const cypressTypeScriptPreprocessor = require('./cy-ts-preprocessor');
|
|
const { addMatchImageSnapshotPlugin } = require('cypress-image-snapshot/plugin');
|
|
|
|
module.exports = on => {
|
|
on('file:preprocessor', cypressTypeScriptPreprocessor);
|
|
addMatchImageSnapshotPlugin(on);
|
|
};
|