Files
tabler/core/vitest.scss.config.mjs
T

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'],
},
})