- Updated localization files for Arabic and Traditional Chinese (Hong Kong). - Added Arabic language support in the i18n configuration. - Improved validation messages in the withdrawal schema. - Refactored Vue components to ensure consistent usage of translation functions. - Cleaned up CSS files for better formatting and consistency.
16 lines
418 B
TypeScript
16 lines
418 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
supportFile: "tests/e2e/support/e2e.{js,jsx,ts,tsx}",
|
|
specPattern: "tests/e2e/specs/**/*.cy.{js,jsx,ts,tsx}",
|
|
videosFolder: "tests/e2e/videos",
|
|
screenshotsFolder: "tests/e2e/screenshots",
|
|
baseUrl: "http://localhost:5173",
|
|
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
});
|