mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 19:10:24 +00:00
644d32db2a
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.
8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import { configDefaults, defineConfig } from "vitest/config"
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
exclude: [...configDefaults.exclude, "target/*"],
|
|
include: ["src/**/*.{spec,test}.ts"],
|
|
},
|
|
})
|