mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 12:26:38 -06:00
1287befae7
* fix(release): preserve upgrade diagnostic probe * test(vitest): reinstantiate contract projects for audits * style(test): format upgrade diagnostic assertions * test(ui): isolate route transition outlet fixture
14 lines
484 B
TypeScript
14 lines
484 B
TypeScript
// Vitest contracts plugin config wires the contracts plugin test shard.
|
|
import { createContractsVitestConfig, pluginContractPatterns } from "./vitest.contracts-shared.ts";
|
|
|
|
export function createContractsPluginVitestConfig(
|
|
env: Record<string, string | undefined> = process.env,
|
|
argv: string[] = process.argv,
|
|
) {
|
|
return createContractsVitestConfig(pluginContractPatterns, env, argv, {
|
|
name: "contracts-plugin",
|
|
});
|
|
}
|
|
|
|
export default createContractsPluginVitestConfig();
|