qe-fe-automation
Version:
FE test automation framework using cypress
12 lines (10 loc) • 406 B
text/typescript
import { ChatBox, CSat } from '@chat-lib/index';
describe('Chat: CSAT score skip', () => {
it.skip('C7358732: Skip CSAT in the end of a chat', { tags: ['@tier2'] }, () => {
CSat.prepareBookingAndCompanyCreation();
CSat.prepareMsgForCsatFeedback();
CSat.skipAndEndChat();
ChatBox.expectMsgReceivedFromAva('Thank you for using Navan.');
ChatBox.newChatButtonShouldVisible();
});
});