FIX: In Ember CLI some plugin tests were referring to the wrong container

This commit is contained in:
Robin Ward 2021-11-09 10:49:08 -05:00
parent 520a0cfa2b
commit 769d53ff09

View File

@ -1564,6 +1564,9 @@ function getPluginApi(version) {
owner.registry.register("plugin-api:main", pluginApi, { owner.registry.register("plugin-api:main", pluginApi, {
instantiate: false, instantiate: false,
}); });
} else {
// If we are re-using an instance, make sure the container is correct
pluginApi.container = owner;
} }
// We are recycling the compatible object, but let's update to the higher version // We are recycling the compatible object, but let's update to the higher version