Skip to content

Commit

Permalink
Core | Test: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lee00678 committed Jul 23, 2024
1 parent 22368a1 commit 2aeca5c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions packages/dev/cypress/e2e/spec.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ describe('Unovis Test', () => {
cy.percySnapshot('Empty Segments', { scope: '.exampleViewer' })
})

it('Chrod Diagram Hierarchy Nodes', () => {
cy.contains('Chrod Diagram Hierarchy Nodes').click()
cy.wait(3000)
cy.percySnapshot('Chrod Diagram Hierarchy Nodes', { scope: '.exampleViewer' })
it('Chord Diagram Hierarchy Nodes', () => {
cy.contains('Chord Diagram Hierarchy').click()
cy.wait(5000)
cy.percySnapshot('Chord Diagram Hierarchy Nodes', { scope: '.exampleViewer' })
})

it('Node Levels', () => {
Expand All @@ -139,10 +139,10 @@ describe('Unovis Test', () => {
cy.percySnapshot('Node Levels', { scope: '.exampleViewer' })
})

it('Basic Chrod Diagram', () => {
cy.contains('Basic Chrod Diagram').click()
cy.wait(3000)
cy.percySnapshot('Basic Chrod Diagram', { scope: '.exampleViewer' })
it('Basic Chord Diagram', () => {
cy.contains('Basic Chord Diagram').click()
cy.wait(5000)
cy.percySnapshot('Basic Chord Diagram', { scope: '.exampleViewer' })
})

it('Labels and Radius Scale Exponent', () => {
Expand All @@ -151,10 +151,10 @@ describe('Unovis Test', () => {
cy.percySnapshot('Labels and Radius Scale Exponent', { scope: '.exampleViewer' })
})

it('Chrod Diagram Node Selection', () => {
cy.contains('Chrod Diagram Node Selection').click()
it('Chord Diagram Node Selection', () => {
cy.contains('Chord Diagram Node').click()
cy.wait(3000)
cy.percySnapshot('Chrod Diagram Node Selection', { scope: '.exampleViewer' })
cy.percySnapshot('Chord Diagram Node Selection', { scope: '.exampleViewer' })
})

it('Graph: Custom Node Fills', () => {
Expand Down

0 comments on commit 2aeca5c

Please sign in to comment.