Skip to content

Commit

Permalink
ACS-8398 Reverted one change
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksanderSklorz committed Oct 4, 2024
1 parent 7276789 commit dc0cc6e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion projects/aca-shared/rules/src/app.rules.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,12 @@ describe('app.evaluators', () => {
});

it('should call get on context.appConfig with correct parameters', () => {
testCanDisplayKnowledgeRetrievalButton('/personal-files', false, false);
context.appConfig = jasmine.createSpyObj<AppConfigService>({
get: false
});

app.canDisplayKnowledgeRetrievalButton(context);
expect(context.appConfig.get).toHaveBeenCalledWith('plugins.knowledgeRetrievalEnabled', false);
});
});

Expand Down

0 comments on commit dc0cc6e

Please sign in to comment.