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