import { ChatBox, CSat } from '@chat-lib/index';

describe('Chat: CSAT score', () => {
  it.skip('C7358181: Fill CSAT in the end of a chat', { tags: ['@tier2'] }, () => {
    CSat.prepareBookingAndCompanyCreation();
    CSat.prepareMsgForCsatFeedback();
    CSat.submitCSatScore(5);
    CSat.expectCSatScoreSubmitted(5);
    CSat.expectCSatRemarkSubmitted();
    ChatBox.expectMsgReceivedFromAva('Thank you for your feedback!');
    ChatBox.newChatButtonShouldVisible();
  });
});
