There is a bug with @hadronous/pic

  1. I tried await PocketIc.create() but I got error TypeError: Cannot read properties of undefined (reading 'protocol')
  2. I tried await PocketIc.create(url)* where url is http://localhost:8080 that i got from dfx start --clean but I also got another error SyntaxError: Unexpected token 'C', "Could not "... is not valid JSON
  3. I tried dfx deploy backend to make sure the test runes on backend canister
const setupTestEnvironment = async () => {
  const url: URL = import.meta.env.VITE_IC_HOST;
  console.log({ url_is_here: url });
  const alice = createIdentity("1");
  const pic = **await PocketIc.create(url)**;
}