import { describe, it, expect } from "bun:test"; it("shadow realm works", () => { const red = new ShadowRealm(); globalThis.someValue = 1; // Affects only the ShadowRealm's global const result = red.evaluate("globalThis.someValue = 2;"); expect(globalThis.someValue).toBe(1); expect(result).toBe(2); });
aboutsummaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/.stackblitzrc (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-05-11Fix APIRoute type (#3344)Gravatar Matthew Phillips 3-11/+8
2022-05-11[create-astro] Finalize developer experience... with gradients 🚀 (#3313)Gravatar Ben Holmes 5-23/+123