You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a timing issue in the way plugin-check runs in watch/serve mode. If a testConfigPath is not provided, we generate a default config, but currently this step is skipped in postBuild in development mode, since it supposed to be covered by watch. But for an initial sde watch, there is a race condition, so the check-tests.js may not be created before the report dev server starts.
To resolve this, we should probably just run the genTestConfig step in development mode, only for the initial postBuild call.
The text was updated successfully, but these errors were encountered:
There is a timing issue in the way plugin-check runs in watch/serve mode. If a
testConfigPath
is not provided, we generate a default config, but currently this step is skipped inpostBuild
in development mode, since it supposed to be covered bywatch
. But for an initialsde watch
, there is a race condition, so thecheck-tests.js
may not be created before the report dev server starts.To resolve this, we should probably just run the
genTestConfig
step in development mode, only for the initialpostBuild
call.The text was updated successfully, but these errors were encountered: