mirror of
https://github.com/tabler/tabler.git
synced 2026-08-06 11:22:23 +04:00
a373e17c8e
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
11 lines
344 B
JavaScript
11 lines
344 B
JavaScript
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'],
|
|
},
|
|
})
|