feat: added fronted for timers_list, added urls for cors

This commit is contained in:
Arduinum
2025-12-29 18:02:18 +03:00
committed by Arduinum628
parent 5501e7a632
commit 3df6f3a47d
24 changed files with 501 additions and 894 deletions

14
client/cypress.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:5173',
supportFile: 'tests/e2e/support/e2e.js',
specPattern: 'tests/e2e/specs/**/*.cy.{js,jsx}',
videosFolder: 'tests/e2e/videos',
screenshotsFolder: 'tests/e2e/screenshots',
setupNodeEvents(on, config) {
// Пока пусто — можно не трогать
},
},
});