feature/integracion-cloudrestore-targets (#9)

integraciones para cloud recovery

Reviewed-on: #9
Co-authored-by: hreyes <hreyes@aduanasoft.com.mx>
Co-committed-by: hreyes <hreyes@aduanasoft.com.mx>
This commit is contained in:
2026-06-09 14:58:48 +00:00
committed by acazares
parent 3e5557c034
commit b8be307892
30 changed files with 2426 additions and 67 deletions

10
vitest.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vitest/config';
// Configuración mínima de Vitest para pruebas unitarias de lógica pura del servidor
// (cifrado, helpers). Las pruebas no dependen de SvelteKit ni del entorno del navegador.
export default defineConfig({
test: {
environment: 'node',
include: ['src/**/*.{test,spec}.{js,ts}']
}
});