Skip to content

Commit 8f6ab96

Browse files
fix: pass user-defined health checks to config (#2325)
* pass user defined healthchecks to config * fix tests
1 parent b868db6 commit 8f6ab96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli-config/src/loadConfig.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function loadConfig(projectRoot: string = findProjectRoot()): Config {
102102
},
103103
dependencies: userConfig.dependencies,
104104
commands: userConfig.commands,
105-
healthChecks: [],
105+
healthChecks: userConfig.healthChecks || [],
106106
platforms: userConfig.platforms,
107107
get project() {
108108
if (lazyProject) {

0 commit comments

Comments
 (0)