mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 21:56:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			201 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			201 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const { defineConfig } = require("cypress");
 | 
						|
 | 
						|
module.exports = defineConfig({
 | 
						|
    e2e: {
 | 
						|
        supportFile: false,
 | 
						|
        specPattern: [
 | 
						|
            "test/cypress/unit/**/*.js"
 | 
						|
        ],
 | 
						|
    }
 | 
						|
});
 |