1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-07 11:52:22 +04:00

Add SCSS unit tests for mixins, utilities, and helpers (#2699)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Paweł Kuna
2026-07-21 21:13:57 +02:00
committed by GitHub
parent b5d0caee42
commit a373e17c8e
29 changed files with 1492 additions and 7 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vitest/config'
// Standalone project for SCSS unit tests (sass-true).
// Runs in the default Node environment — intentionally separate from the
// browser-mode JS/TS config in vitest.config.mts so the two never overlap.
export default defineConfig({
test: {
include: ['scss/tests/**/*.test.mjs'],
},
})