jest-expect-standalone@24.0.2

    ~~~js
    import {expect} from "@tomlarkworthy/jest-expect-standalone"
    ~~~
const expect = await ( async () => {
  const blob = await unzip(
    FileAttachment("jest-expect-standalone-24.0.2.js.gz")
  );

  const objectURL = URL.createObjectURL(
    new Blob([blob], { type: "application/javascript" })
  );
  try {
    await import(objectURL);
    return window.expect;
  } finally {
    URL.revokeObjectURL(objectURL);
  }
})();
display(expect)
const unzip = async (attachment) =>
  await new Response(
    (await attachment.stream()).pipeThrough(new DecompressionStream("gzip"))
  ).blob();
display(unzip)