Development Resources

moduleIntegrationTestRunner Reference

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

Example#

Code
1import { moduleIntegrationTestRunner } from "medusa-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: "./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