Skip to content

Commit f09ec69

Browse files
committed
Temp
1 parent deed603 commit f09ec69

File tree

152 files changed

+3629
-812
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+3629
-812
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.cjs

Lines changed: 0 additions & 17 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ dist*/
1414
Thumbs.db
1515
*.log
1616
*.tsbuildinfo
17+
.eslintcache

cypress/e2e/app.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ describe('/mock', () => {
162162
cy.selectExplorerNode('fourD');
163163

164164
cy.findByRole('figure', { name: 'fourD' }).as('vis').should('be.visible');
165-
cy.findAllByRole('slider', { name: /D[0-9]/u }).should('have.length', 2);
165+
cy.findAllByRole('slider', { name: /D\d/u }).should('have.length', 2);
166166
cy.findByRole('slider', { name: 'D1' })
167167
.as('d1Slider')
168168
.should('have.attr', 'aria-valuenow', 0)

cypress/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
declare namespace Cypress {
22
interface Chainable {
3-
findExplorerNode(name: string): ReturnType<typeof cy.findByRole>;
4-
selectExplorerNode(name: string): void;
5-
selectVisTab(name: string): void;
3+
findExplorerNode: (name: string) => ReturnType<typeof cy.findByRole>;
4+
selectExplorerNode: (name: string) => void;
5+
selectVisTab: (name: string) => void;
66
}
77
}

0 commit comments

Comments
 (0)