Test APIs
The Workers Vitest integration provides runtime helpers for writing tests in the cloudflare:test module. The cloudflare:test module is provided by the @cloudflare/vitest-pool-workers package, but can only be imported from test files that execute in the Workers runtime.
cloudflare:test module definition
-
env:import(“cloudflare:test”).ProvidedEnv-
Exposes the
envobject for use as the second argument passed to ES modules format exported handlers. This provides access to bindings that you have defined in your Vitest configuration file.
To configure the type of this value, use an ambient module type:
-
-
SELF:Fetcher-
Service binding to the default export defined in the
mainWorker. Use this to write integration tests against your Worker. ThemainWorker runs in the same isolate/context as tests so any global mocks will apply to it too.
-
-
fetchMock:import(“undici”).MockAgent-
Declarative interface for mocking outbound
fetch()requests. Deactivated by default and reset before running each test file. Refer toundici’sMockAgentdocumentation for more information. Note this only mocksfetch()requests for the current test runner Worker. Auxiliary Workers should mockfetch()es using the MiniflarefetchMock/outboundServiceoptions. Refer to Configuration for more information.
-
Events
-
createExecutionContext():ExecutionContext- Creates an instance of the
contextobject for use as the third argument to ES modules format exported handlers.
- Creates an instance of the
-
waitOnExecutionContext(ctx:ExecutionContext):Promise<void>-
Use this to wait for all Promises passed to
ctx.waitUntil()to settle, before running test assertions on any side effects. Only accepts instances ofExecutionContextreturned bycreateExecutionContext().
-
-
createScheduledController(options?:FetcherScheduledOptions):ScheduledController-
Creates an instance of
ScheduledControllerfor use as the first argument to modules-formatscheduled()exported handlers.
-
-
createMessageBatch(queueName:string, messages:ServiceBindingQueueMessage[]):MessageBatch- Creates an instance of
MessageBatchfor use as the first argument to modules-formatqueue()exported handlers.
- Creates an instance of
-
getQueueResult(batch:MessageBatch, ctx:ExecutionContext):Promise<FetcherQueueResult>-
Gets the acknowledged/retry state of messages in the
MessageBatch, and waits for allExecutionContext#waitUntil()edPromises to settle. Only accepts instances ofMessageBatchreturned bycreateMessageBatch(), and instances ofExecutionContextreturned bycreateExecutionContext().
-
Durable Objects
-
runInDurableObject<O extends DurableObject, R>(stub:DurableObjectStub, callback:(instance: O, state: DurableObjectState) => R | Promise<R>):Promise<R>-
Runs the provided
callbackinside the Durable Object instance that corresponds to the providedstub.
This temporarily replaces your Durable Object’s
fetch()handler withcallback, then sends a request to it, returning the result. This can be used to call/spy-on Durable Object instance methods or seed/get persisted data. Note this can only be used withstubs pointing to Durable Objects defined in themainWorker.
-
-
runDurableObjectAlarm(stub:DurableObjectStub):Promise<boolean>- Immediately runs and removes the Durable Object pointed to by
stub’s alarm if one is scheduled. Returnstrueif an alarm ran, andfalseotherwise. Note this can only be used withstubs pointing to Durable Objects defined in themainWorker.
- Immediately runs and removes the Durable Object pointed to by
-
listDurableObjectIds(namespace:DurableObjectNamespace):Promise<DurableObjectId[]>-
Gets the IDs of all objects that have been created in the
namespace. RespectsisolatedStorageif enabled, meaning objects created in a different test will not be returned.
-
D1
-
applyD1Migrations(db:D1Database, migrations:D1Migration[], migrationTableName?:string):Promise<void>- Applies all un-applied D1 migrations stored in the
migrationsarray to databasedb, recording migrations state in themigrationsTableNametable.migrationsTableNamedefaults tod1_migrations. Call thereadD1Migrations()function from the@cloudflare/vitest-pool-workers/configpackage inside Node.js to get themigrationsarray. Refer to the D1 recipe for an example project using migrations.
- Applies all un-applied D1 migrations stored in the