mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-07 11:35:36 +00:00
12 lines
425 B
JavaScript
12 lines
425 B
JavaScript
import {getExpectedDetailsDict, checkLine} from '../testHelpers/StatusBarHelper';
|
|
|
|
|
|
it('opening', function () {
|
|
cy.visit(Cypress.env('testUrl'));
|
|
cy.get(`[data-cy="podsCountText"]`).trigger('mouseover');
|
|
|
|
cy.get('[data-cy="expandedStatusBar"] > :nth-child(2) > > :nth-child(2) >').should('have.length', 1); // one line
|
|
|
|
checkLine(1, getExpectedDetailsDict(Cypress.env('name'), Cypress.env('namespace')));
|
|
});
|