mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-06-27 05:01:02 -06:00
11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
excludeSpecPattern: [
|
|
'**/*.html',
|
|
],
|
|
video: true,
|
|
},
|
|
});
|