moduleIntegrationTestRunner Reference
This document provides a reference to the moduleIntegrationTestRunner
function provided by the @medusajs/test-utils
package.
Example#
1import { moduleIntegrationTestRunner } from "@medusajs/test-utils"2import { BLOG_MODULE } from ".."3import BlogModuleService from "../service"4import Post from "../models/post"5 6moduleIntegrationTestRunner<BlogModuleService>({7 moduleName: BLOG_MODULE,8 moduleModels: [Post],9 resolve: "./src/modules/blog",10 testSuite: ({ service }) => {11 // TODO write tests12 },13})
Parameters#
Input
objectObject parameter of test options.
Input
objectTest Suite Parameters#
The function passed to testSuite
accepts the following parameters:
Input
objectObject parameter of test utilities.
Input
objectWas this page helpful?