Skip to content

Commit 2e61558

Browse files
committed
Fix Cypress tests
Signed-off-by: manaswinidas <[email protected]>
1 parent d67fb1b commit 2e61558

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clients/ui/frontend/src/__tests__/cypress/cypress/tests/mocked/modelCatalog/modelCatalogTabs.cy.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,12 @@ describe('Model Catalog Details Tabs', () => {
224224
.findHardwareConfigurationTableHeaders()
225225
.eq(1)
226226
.should('contain.text', 'Workload type');
227+
// First row should contain formatted workload type (Chatbot, not chatbot)
227228
modelCatalog
228229
.findHardwareConfigurationColumn('Workload type')
229230
.first()
230-
.should('contain.text', 'Code Fixing')
231-
.should('not.contain.text', 'code_fixing');
231+
.should('contain.text', 'Chatbot')
232+
.should('not.contain.text', 'chatbot');
232233
});
233234
});
234235

0 commit comments

Comments
 (0)