Skip to content

Commit

Permalink
Merge pull request #945 from Magickbase/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY authored May 25, 2023
2 parents 278c85c + cdeb048 commit f9366f5
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 19 deletions.
4 changes: 3 additions & 1 deletion cypress/integration/tokens/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ context('Tokens List Pages Tests', () => {
.first()
.find('td')
.first()
.should('contain.text', '57us test Collection(57u)')
.should(field => {
expect(field.text()).to.match(/\w+(\w+)/)
})
.next()
.should(field => {
expect(field.text()).to.match(FULL_ADDRESS_REGEX)
Expand Down
62 changes: 46 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"wagmi": "0.10.6"
},
"devDependencies": {
"@cypress/code-coverage": "3.10.0",
"@cypress/code-coverage": "3.10.6",
"@svgr/webpack": "6.5.1",
"@types/node": "18.11.19",
"@types/phoenix": "1.5.4",
Expand Down
2 changes: 1 addition & 1 deletion styles/tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
background-color: var(--tooltip-background-color);
color: var(--tooltip-font-color);
user-select: text;
white-space: normal;
white-space: nowrap;
text-align: center;
display: none;

Expand Down

1 comment on commit f9366f5

@vercel
Copy link

@vercel vercel bot commented on f9366f5 May 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.