All Topics
All Topics
Technology
Technology
AI
AI
Business
Business
Entertainment
Entertainment
News
News
Programming
Programming
Security
Security
Science
Science
Design
Design
Environment
Environment
Finance
Finance
Crypto
Crypto
Politics
Politics
Sports
Sports
Education
Education
Gaming
Gaming
Art
Art
Music
Music
Health
Health
Books
Books
Food
Food
Travel
Travel
Personal
Personal
Bluesky
Twitter

Workers - Support for ctx.exports in @cloudflare/vitest-pool-workers

6mo ago

Source

CloudflareWorkers - Support for ctx.exports in @cloudflare/vitest-pool-workerscloudflare.com
Snippet from the RSS feed
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.

You might also wanna read

Comments

Sign in to join the conversation.

No comments yet. Be the first.