mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
// Vitest contracts channel registry config wires the contracts channel registry test shard.
|
|
import {
|
|
channelRegistryContractPatterns,
|
|
createContractsVitestConfig,
|
|
} from "./vitest.contracts-shared.ts";
|
|
|
|
export default createContractsVitestConfig(
|
|
channelRegistryContractPatterns,
|
|
process.env,
|
|
process.argv,
|
|
{
|
|
name: "contracts-channel-registry",
|
|
},
|
|
);
|