Is this suited for github?
Is your feature request related to a problem? Please describe.
implementing a new adapter I can sucesfully past tests having
count: async ({
model,
where,
}: {
model: string;
where?: Required<Where>[];
}): Promise<number> => {
console.log("count model:", model);
console.log("count where:", where);
// ...
return -1;
},
Describe the solution you'd like
add a new test
Describe alternatives you've considered
remove need for count if un needed
Additional context
No response
Is this suited for github?
Is your feature request related to a problem? Please describe.
implementing a new adapter I can sucesfully past tests having
Describe the solution you'd like
add a new test
Describe alternatives you've considered
remove need for count if un needed
Additional context
No response