Skip to content

Commit

Permalink
Update chat.cy.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tjbck committed May 2, 2024
1 parent c1f88eb commit 2789102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/chat.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ describe('Settings', () => {
// Click on the model selector
cy.get('button[aria-label="Select a model"]').click();
// Select the first model
cy.get('div[role="menuitem"][data-value]').first().click();
cy.get('div[role="menuitem"]').first().click();
});

it('user can perform text chat', () => {
// Click on the model selector
cy.get('button[aria-label="Select a model"]').click();
// Select the first model
cy.get('div[role="menuitem"][data-value]').first().click();
cy.get('div[role="menuitem"]').first().click();
// Type a message
cy.get('#chat-textarea').type('Hi, what can you do? A single sentence only please.', {
force: true
Expand Down

0 comments on commit 2789102

Please sign in to comment.