The @cloudflare/vitest-pool-workers package now supports the ctx.exports API, allowing you to access your Worker’s top-level exports during tests.
You can access ctx.exports in unit tests by calling createExecutionContext():
import { createExecutionContext } from "cloudflare:test";import { it, expect } from "vitest";
it("can access ctx.exports", async () => { const ctx = createExecutionContext(); const result = await ctx.exports.MyEntryPoint.myMethod(); expect(result).toBe("expected value");});Alternatively, you can import exports directly from cloudflare:workers:
import { exports } from "cloudflare:workers";import { it, expect } from "vitest";
it("can access imported exports", async () => { const result = await exports.MyEntryPoint.myMethod(); expect(result).toBe("expected value");});See the context-exports fixture for a complete example.
Source: Cloudflare
Latest Posts
- MC1279093: Microsoft Defender for Office 365 Adds Promotions Tagging and New Promotions Folder for Emails

- MC1405506: OneNote on Windows Adds Multimodal Recording to Copilot Notebooks

- Amazon Web Services now introduces Context Ontology Accelerator

- MC1446371: Dynamics 365 Project Operations Adds Time Phasing for Quote and Contract Lines







