We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4af765 commit feb998cCopy full SHA for feb998c
src/components/chat/chat.spec.ts
@@ -312,9 +312,9 @@ describe('Chat', () => {
312
await elementUpdated(chat);
313
314
const { input, suggestionsContainer } = getChatDOM(chat);
315
- expect(suggestionsContainer.getBoundingClientRect().top).lessThanOrEqual(
316
- input.self.getBoundingClientRect().bottom
317
- );
+ expect(
+ suggestionsContainer.getBoundingClientRect().top
+ ).greaterThanOrEqual(input.self.getBoundingClientRect().bottom);
318
});
319
320
it('should render typing indicator if `isTyping` is true', async () => {
0 commit comments