Jose Celano
Jose Celano
Cypress can also be used for [unit testing](https://docs.cypress.io/examples/recipes#Unit-Testing), but I get the same error: ```s The error was: Error: Webpack Compilation Error ./src/domain/services/sanitizer.ts Module not found: Error: Can't resolve '#imports'...
> At unit testing level what do you prefer [vitest](https://vitest.dev/) or [jest](https://jestjs.io/)? Hi @Wolfremium13 I've only used Jest. The only thing I know about vitest is that It's supposedly faster....
> The truth is that it's a matter of preferences. I'm not an expert in front-end to make a recommendation, but I have found the vitest experience more enjoyable compared...
> > Why? > > Sorry for being late xD, on my expirience with vite it goes super fast compared with Jest, so you can reduce the feedback loop with...
Relates to: https://github.com/nuxt/test-utils/issues/297
Should we serialize all enums in lowercase? @da2ce7 . For example: `email_on_signup`.
The `conenct_url` field in `[database]` section is actually defined in the [sqlx](https://github.com/launchbadge/sqlx/blob/main/sqlx-core/src/connection.rs#L10) crate - Sqlite: `sqlite://data.db?mode=rwc`. - Mysql: `mysql://root:root_secret_password@mysql:3306/torrust_index_e2e_testing`. - PostgreSQL: `postgres://postgres:password@localhost/database` It's a URL. We should decide if we...
Another question @da2ce7 is: should the default configuration be the development configuration? ```rust pub const DEFAULT_PATH_CONFIG: &str = "./share/default/config/index.development.sqlite3.toml"; ``` `./share/default/config/index.development.sqlite3.toml`: ```toml log_level = "info" ``` Default values: ```toml [website]...
I've also starting using this struct: ```rust struct PasswordConstraints { pub min_password_length: usize, pub max_password_length: usize, } ``` For the `auth` section in the toml file: ```toml [auth] email_on_signup =...
Maybe we canb also refactor the `[mail]` section, from ```toml [mail] email_verification_enabled = false from = "[email protected]" reply_to = "[email protected]" username = "" password = "" server = "" port...