We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f6d37b commit b23a434Copy full SHA for b23a434
frontend/cypress/e2e/block-production/won-slots/table.cy.ts
@@ -51,7 +51,9 @@ describe('BLOCK PRODUCTION WON SLOTS TABLE', () => {
51
.its('store')
52
.then(getBPWonSlots)
53
.then((state: BlockProductionWonSlotsState) => {
54
- cy.log(state.slots.toString());
+ if (state && state.slots) {
55
+ cy.log(state.slots.length.toString());
56
+ }
57
cy.log(condition(state).toString());
58
if (condition(state)) {
59
0 commit comments