mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-15 15:15:31 +00:00
12 lines
399 B
JavaScript
12 lines
399 B
JavaScript
import {getExpectedDetailsDict, checkLine} from '../testHelpers/StatusBarHelper';
|
|
|
|
|
|
it('opening', function () {
|
|
cy.visit(Cypress.env('testUrl'));
|
|
cy.get('.podsCount').trigger('mouseover');
|
|
|
|
cy.get('.expandedStatusBar > :nth-child(2) > > :nth-child(2) >').should('have.length', 1); // one line
|
|
|
|
checkLine(1, getExpectedDetailsDict(Cypress.env('name'), Cypress.env('namespace')));
|
|
});
|