Jest Testing suddenly stopped working

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?

Finally figured this one out, and it was carelessness on my part. I changed to node 20.18.2 and I added the test database. It’s amazing when you read the documentation what you learn :slight_smile: