fix(ci): tests unitaires Vitest uniquement, sans Playwright ni migrations
Some checks failed
CI / Lint, Test & Build (push) Successful in 12m12s
Deploy to Production / Build and Deploy (push) Has been cancelled

Les tests migration exigent un schéma aligné via db push (hors scope CI).
Trois fichiers unitaires importaient @playwright/test par erreur.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Antigravity
2026-05-17 09:01:27 +00:00
parent b5fb439592
commit 8283c4e140
5 changed files with 35 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
import { test, expect } from '@playwright/test'
import { describe, test, expect } from 'vitest'
import { validateEmbedding, calculateL2Norm, normalizeEmbedding } from '../../lib/utils'
test.describe('Embedding Validation', () => {