mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
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'],
|
|
},
|
|
})
|