Skip to content

Commit

Permalink
test: selected node highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
Myllaume committed Sep 20, 2024
1 parent dcb5166 commit 4e253e6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions e2e/graph.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,19 @@ describe('graph', () => {
cy.get('[data-node] text').should('have.attr', 'font-size', 10);
});

it('should highlight selected node and connected links', () => {
cy.visit('temp/citeproc.html#evergreen notes');

const highlightNodes = ['evergreen notes'];

cy.get('[data-node].highlight').should('have.length', highlightNodes.length);
highlightNodes.forEach((name) =>
cy.get(`[data-node="${name}"]`).should('have.class', 'highlight'),
);

cy.get('[data-link].highlight').should('have.length', 4);
});

it('should highlight selected node, hovered node and connected nodes, links', () => {
cy.get('[data-node], [data-link]').should('not.have.class', 'highlight');

Expand Down

0 comments on commit 4e253e6

Please sign in to comment.