After a database migration the Jest Testing stopped working. The application, storybook and GraphQL playground are all working properly.
The error messages is
Error: Prisma schema validation - (get-config wasm)
Error code: P1012
error: Error validating datasource `db`: the URL must start with the protocol `postgresql://` or `postgres://`.
--> api/db/schema.prisma:9
|
8 | provider = "postgresql"
9 | url = env("DATABASE_URL")
|
Validation Error Count: 1
[Context: getConfig]
Prisma CLI Version : 5.20.0
● Test suite failed to run
Jest: Got error running globalSetup - /Users/russelljohnson/Dropbox/projects/westhobbs/node_modules/@redwoodjs/testing/config/jest/api/globalSetup.js, reason: Command failed with exit code 1: yarn rw prisma db push --force-reset --accept-data-loss
From the error message I tried
(1) checked the prisma.schema and everything in it is correct, and as mentioned above the app, storyboard and GraphQL are running with no errors.
(2) Ran the yarn rw prisma db push --force-reset --accept-data-loss command and it runs with no errors.
(3) I dropped the database and created it again with a migration and reseeded all the data.
None of this has resolved the problem. I’m running version 8.5. Any thoughts?