import { TypeList } from "docs-ui" export const metadata = { title: `medusaIntegrationTestRunner Reference`, } # {metadata.title} This document provides a reference to the `medusaIntegrationTestRunner` function provided by the `@medusajs/test-utils` package. ## Example ```ts import { medusaIntegrationTestRunner } from "@medusajs/test-utils" medusaIntegrationTestRunner({ testSuite: ({ api, getContainer }) => { // TODO write tests... }, }) ``` ## Parameters void`", name: "testSuite", description: "The Jest tests to run.", optional: false }, { type: "`string`", name: "dbName", description: "A name to use for the database. By default, a random name is generated.", }, { type: "`string`", name: "schema", description: "The PostgreSQL schema that the database is created in.", }, { type: "`Record`", name: "env", description: "Environment variables to use in the test suite." }, { type: "`boolean`", name: "debug", description: "Whether to show database log messages.", defaultValue: "false" } ] } ]} sectionTitle="Parameters" /> ## Test Suite Parameters The function passed to `testSuite` accepts the following parameters: ", name: "api", description: "A set of methods used to send requests to the Medusa application.", optional: false, children: [ { type: "(path: string) => Promise", name: "get", description: "Send a GET request to the specified path." }, { type: "(path: string, data?: any) => Promise", name: "post", description: "Send a POST request to the specified path." }, { type: "(path: string) => Promise", name: "delete", description: "Send a DELETE request to the specified path." }, ] }, { type: "`() => MedusaContainer`", name: "getContainer", description: "A name to use for the database. By default, a random name is generated.", }, { type: "`Record`", name: "dbConfig", description: "The created database's configurations", children: [ { type: "`string`", name: "dbName", description: "The database's name." }, { type: "`string`", name: "schema", description: "The PostgreSQL schema the database is created in." }, { type: "`string`", name: "clientUrl", description: "The connection URL to the database." }, ] }, { type: "`Record`", name: "dbUtils", description: "A set of methods to manage the database", children: [ { type: "`(dbName: string) => Promise`", name: "create", description: "Creates a database." }, { type: "`(options: { schema?: string }) => Promise`", name: "teardown", description: "Deletes all data in a database's tables." }, { type: "`(dbName: string) => Promise`", name: "shutdown", description: "Drops a database." }, ] } ] } ]} sectionTitle="Test Suite Parameters" />