[ACS-6924] Rename tags and categories plugins to mitigate naming conflicts (#3687)

* [ACS-6924] Rename tags and categories plugins to mitigate conflicts

* [ACS-6924] Add missing logic for tags and categories plugins
This commit is contained in:
MichalKinas
2024-03-04 19:52:17 +01:00
committed by GitHub
parent c883e16d2b
commit 33264f0731
4 changed files with 16 additions and 6 deletions

View File

@@ -947,7 +947,7 @@ describe('app.evaluators', () => {
};
app.areTagsEnabled(context);
expect(context.appConfig.get).toHaveBeenCalledWith('plugins.tags', true);
expect(context.appConfig.get).toHaveBeenCalledWith('plugins.tagsEnabled', true);
});
it('should return true if get from appConfig returns true', () => {
@@ -980,7 +980,7 @@ describe('app.evaluators', () => {
};
app.areCategoriesEnabled(context);
expect(context.appConfig.get).toHaveBeenCalledWith('plugins.categories', true);
expect(context.appConfig.get).toHaveBeenCalledWith('plugins.categoriesEnabled', true);
});
it('should return true if get from appConfig returns true', () => {