moduleIntegrationTestRunner Reference

This document provides a reference to the moduleIntegrationTestRunner function provided by the @medusajs/test-utils package.

Example#

Code
1import { moduleIntegrationTestRunner } from "@medusajs/test-utils"2import { HELLO_MODULE } from ".."3import HelloModuleService from "../service"4import MyCustom from "../models/my-custom"5
6moduleIntegrationTestRunner<HelloModuleService>({7  moduleName: HELLO_MODULE,8  moduleModels: [MyCustom],9  resolve: "./src/modules/hello",10  testSuite: ({ service }) => {11    // TODO write tests12  },13})

Parameters#

Inputobject
Object parameter of test options.

Test Suite Parameters#

The function passed to testSuite accepts the following parameters:

Inputobject
Object parameter of test utilities.
Was this page helpful?
Edit this page
Ask Anything
FAQ
What is Medusa?
How can I create a module?
How can I create a data model?
How do I create a workflow?
How can I extend a data model in the Product Module?
Recipes
How do I build a marketplace with Medusa?
How do I build digital products with Medusa?
How do I build subscription-based purchases with Medusa?
What other recipes are available in the Medusa documentation?
Chat is cleared on refresh
Line break