Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: selected node highlight #138

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading