e2e testing with preview deployments
I want my tests to run seed functions before they go, e.g.
this doesn't work in CI because the tests are ran outside the convex deploy context and don't have the
CONVEX_DEPLOYMENT environment variableI can
--preview-run seed:characters, but I want to be able to run specific functions for specific tests to replicate certain setup scenarios without the test going through the UI to do soso my question is: how can I pass the info from
convex deploy such that I can run functions during the tests?