mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-06 19:14:50 +00:00
* Fetch N number of records in M milliseconds timeout before streaming the records * Implement the functionality inside socket data streamer * Reverse the `fetchData` slice * #run_acceptance_tests * Trying to fix the tests. #run_acceptance_tests * javascript compilation error. * #run_acceptance_tests * Name the method better * Upgrade Basenine version to `v0.8.0` * Fix some issues related to `Fetch` * Upgrade the Basenine version in `Dockerfile` as well * Remove underscore from the parameter name * Parameterize fetch timeout ms Co-authored-by: gadotroee <55343099+gadotroee@users.noreply.github.com> Co-authored-by: Roee Gadot <roee.gadot@up9.com>
26 lines
662 B
JavaScript
26 lines
662 B
JavaScript
import {
|
|
isValueExistsInElement,
|
|
resizeToHugeMizu,
|
|
} from "../testHelpers/TrafficHelper";
|
|
|
|
it('Loading Mizu', function () {
|
|
cy.visit(Cypress.env('testUrl'));
|
|
});
|
|
|
|
checkEntries();
|
|
|
|
function checkEntries() {
|
|
it('checking all entries', function () {
|
|
cy.get('#entries-length').should('not.have.text', '0').then(() => {
|
|
resizeToHugeMizu();
|
|
|
|
cy.get('#list [id^=entry]').each(entryElement => {
|
|
entryElement.click();
|
|
cy.get('#tbody-Headers').should('be.visible');
|
|
isValueExistsInElement(false, 'Ignored-User-Agent', '#tbody-Headers');
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|