From e2d887206003b1909797672fd86dbb3ab1f1d3f9 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 11 Jun 2024 17:03:49 -0700 Subject: [PATCH] fix: e2e --- cypress/e2e/settings.cy.ts | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/cypress/e2e/settings.cy.ts b/cypress/e2e/settings.cy.ts index 5db232faa..4ea916980 100644 --- a/cypress/e2e/settings.cy.ts +++ b/cypress/e2e/settings.cy.ts @@ -28,19 +28,6 @@ describe('Settings', () => { }); }); - context('Connections', () => { - it('user can open the Connections modal and hit save', () => { - cy.get('button').contains('Connections').click(); - cy.get('button').contains('Save').click(); - }); - }); - - context('Models', () => { - it('user can open the Models modal', () => { - cy.get('button').contains('Models').click(); - }); - }); - context('Interface', () => { it('user can open the Interface modal and hit save', () => { cy.get('button').contains('Interface').click(); @@ -55,14 +42,6 @@ describe('Settings', () => { }); }); - context('Images', () => { - it('user can open the Images modal and hit save', () => { - cy.get('button').contains('Images').click(); - // Currently fails because the backend requires a valid URL - // cy.get('button').contains('Save').click(); - }); - }); - context('Chats', () => { it('user can open the Chats modal', () => { cy.get('button').contains('Chats').click();