Skip to content

Commit

Permalink
fix medusa tests runner
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien2p committed Sep 25, 2024
1 parent 97577ff commit 06e3b89
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/core/medusa-test-utils/src/medusa-test-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export function medusaIntegrationTestRunner({
moduleName,
dbName,
medusaConfigFile,
loadApplication,
schema = "public",
env = {},
debug = false,
Expand All @@ -48,7 +47,6 @@ export function medusaIntegrationTestRunner({
env?: Record<string, any>
dbName?: string
medusaConfigFile?: string
loadApplication?: boolean
schema?: string
debug?: boolean
inApp?: boolean
Expand Down Expand Up @@ -133,9 +131,7 @@ export function medusaIntegrationTestRunner({
let serverShutdownRes: () => any
let portRes: number

if (loadApplication) {
loadedApplication = await appLoader.load()
}
loadedApplication = await appLoader.load()

try {
const {
Expand Down

0 comments on commit 06e3b89

Please sign in to comment.