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
assert.ok(dependencyPluginsLoadedSnapshotIndex>installStageIndex&&dependencyPluginsLoadedSnapshotIndex<dependencyLoadStageIndex,"dependency plugins_loaded callbacks must be scoped to dependency loading")
421
+
assert.ok(dependencyLoadStageIndex>installStageIndex,"dependency plugins must load after managed PHPUnit installation")
422
+
assert.ok(dependencyPluginsLoadedDeferIndex>dependencyLoadStageIndex&&dependencyPluginsLoadedDeferIndex<activationStageIndex,"dependency plugins_loaded callbacks must defer until activation completes")
423
+
assert.ok(activationStageIndex>dependencyLoadStageIndex,"dependency plugins must activate after loading and before tests execute")
424
+
assert.ok(dependencyPluginsLoadedReplayIndex>activationStageIndex,"dependency plugins_loaded callbacks must run once after activation")
0 commit comments