DEV: Add missing `pluginId` to a `modifyClass` test (#23265)

This commit is contained in:
Jarek Radosz 2023-08-25 11:44:42 +02:00 committed by GitHub
parent 3ce3c2ff81
commit 90ef8d3041
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -105,6 +105,8 @@ module("Unit | Utility | plugin-api", function (hooks) {
// This puts things in a state which will trigger https://github.com/emberjs/ember.js/issues/18860 when a native getter is overridden. // This puts things in a state which will trigger https://github.com/emberjs/ember.js/issues/18860 when a native getter is overridden.
withPluginApi("1.1.0", (api) => { withPluginApi("1.1.0", (api) => {
api.modifyClass("test-class:main", { api.modifyClass("test-class:main", {
pluginId: "plugin-api-test",
get foo() { get foo() {
return "modified getter"; return "modified getter";
}, },