zed/styles/vitest.config.ts
Nate Butler 644d32db2a Split Interactive into Interactive and Toggleable (#2628)
This is a part of the intensity driven theme rewrite. 

It introduces the `toggle` and `interactive` helper functions to build
Toggle<T> and Interactive<T> styles for interactive elements in the
theme.

This PR also removes the `theme_testbench` crate and related actions.

Huge thanks to @osiewicz and @mikayla-maki for pushing this forward 🙏🏽

Release Notes:

- Updated the style of many interactive elements.
2023-06-28 12:22:21 +02:00

8 lines
218 B
TypeScript

import { configDefaults, defineConfig } from "vitest/config"
export default defineConfig({
test: {
exclude: [...configDefaults.exclude, "target/*"],
include: ["src/**/*.{spec,test}.ts"],
},
})