Skip to content

Commit

Permalink
fix broken tests
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Kim <[email protected]>
  • Loading branch information
angle943 committed Feb 5, 2025
1 parent c0f21a4 commit 02c4307
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ const inspectTestSuite = () => {
cy.log(`Skipped for ${key}`);
continue;
}
docTable.getExpandedDocTableRowFieldValue(key).should('have.text', value);
docTable
.getExpandedDocTableRowFieldValue(key)
.should('have.text', value === null ? ' - ' : value);
}
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const runSideBarTests = () => {
testData.simpleFields.expectedValues,
testData.pplQuery(config.dataset),
testData.sqlQuery(config.dataset),
cconfig.datasetType === DatasetTypes.INDEX_PATTERN.name,
config.datasetType === DatasetTypes.INDEX_PATTERN.name,
config
);
});
Expand Down

0 comments on commit 02c4307

Please sign in to comment.