Skip to content

Commit 84aca63

Browse files
committed
fix types2
1 parent 56e32ac commit 84aca63

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

common/src/testing/fixtures/agent-runtime.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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]]),

evals/impl/agent-runtime.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)