`convex-test` invalid identifier
It works as expected when the schema looks like this:
However, when a system field such as
_creationTime is added to the schema, vitest throws this error:Error: Field names must be valid identifiers, got "_creationTime"https://github.com/get-convex/convex-test/blob/83f7e271d41f086b16cfcf8f7efc53efd7491b19/index.ts#L838
Desired behaviour
Canconvex-test accept a schema with the same policy as defineSchema({...}) used in schema.ts and not a more strict policy that doesn't allow for _creationTime? defineSchema({...}) allows the _creationTime field.