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