Hey team, I'm integrating Hyperdrive on an existing project and it works great. However when I run t

Hey team, I'm integrating Hyperdrive on an existing project and it works great.
However when I run the tests using unstable_dev my tests are failing with the following error.
Any ideas what I could be doing wrong ? Here's how I init the test worker.
await unstable_dev(entry, {
      experimental: { disableExperimentalWarning: true },
      config: 'wrangler.toml',
    })

Which results in the following error.
> Unexpected token F in JSON at position 0
>  ❯ parseJSONFromBytes node_modules/wrangler/wrangler-dist/cli.js:6582:19
>   6580|     __name(utf8DecodeBytes, "utf8DecodeBytes");
>     6581|     function parseJSONFromBytes(bytes) {
>     6582|       return JSON.parse(utf8DecodeBytes(bytes));
>        |                   ^
>     6583|     }
>     6584|     __name(parseJSONFromBytes, "parseJSONFromBytes");
Was this page helpful?