1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-06 11:22:23 +04:00
Files
tabler/core/vitest.scss.config.mjs
T
2026-07-21 21:13:57 +02:00

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