File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
common/src/testing/fixtures Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ export const TEST_AGENT_RUNTIME_IMPL = Object.freeze({
114114 referral_code : 'ref-test-code' ,
115115 stripe_customer_id : null ,
116116 banned : false ,
117+ created_at : new Date ( '2024-01-01T00:00:00Z' ) ,
117118 } as const
118119 return Object . fromEntries (
119120 fields . map ( ( field ) => [ field , user [ field as keyof typeof user ] ] ) ,
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ export const EVALS_AGENT_RUNTIME_IMPL = Object.freeze<AgentRuntimeDeps>({
3939 referral_code : 'ref-test-code' ,
4040 stripe_customer_id : null ,
4141 banned : false ,
42+ created_at : new Date ( '2024-01-01T00:00:00Z' ) ,
4243 } ) ,
4344 fetchAgentFromDatabase : async ( ) => null ,
4445 startAgentRun : async ( ) => 'test-agent-run-id' ,
You can’t perform that action at this time.
0 commit comments