chore: speed up tests and update opencode models
This commit is contained in:
14
vitest.extensions.config.ts
Normal file
14
vitest.extensions.config.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { defineConfig } from "vitest/config";
|
||||
import baseConfig from "./vitest.config.ts";
|
||||
|
||||
const baseTest = (baseConfig as { test?: { exclude?: string[] } }).test ?? {};
|
||||
const exclude = baseTest.exclude ?? [];
|
||||
|
||||
export default defineConfig({
|
||||
...baseConfig,
|
||||
test: {
|
||||
...baseTest,
|
||||
include: ["extensions/**/*.test.ts"],
|
||||
exclude,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user