We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 534c5f4 commit ef3f40bCopy full SHA for ef3f40b
packages/node_modules/overmind/src/index.ts
@@ -137,7 +137,7 @@ export class Overmind<Config extends Configuration> implements Configuration {
137
constructor(configuration: Config, options: Options = {}) {
138
const name = options.name || 'MyConfig'
139
140
- if (IS_DEVELOPMENT) {
+ if (IS_DEVELOPMENT && !options.testMode) {
141
if (hotReloadingCache[name]) {
142
return hotReloadingCache[name]
143
} else {
@@ -377,7 +377,6 @@ export class Overmind<Config extends Configuration> implements Configuration {
377
: undefined
378
)
379
})
380
-
381
382
const execution = {
383
...this.createExecution(name, action),
0 commit comments