-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix simple analytics value in block analytics tab
- Loading branch information
1 parent
4a6ef3b
commit 73d8ab3
Showing
4 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { WHISPERIT_BLOCK_STATE_HASH } from "../constants"; | ||
|
||
suite(["@tier2"], "Block spotlight stats", () => { | ||
it("are rendered", () => { | ||
cy.visit(`/blocks/${WHISPERIT_BLOCK_STATE_HASH}/analytics`); | ||
cy.assertAnalyticsSimplValueEquals("Total User Amounts Transferred", 215.5); | ||
cy.assertAnalyticsSimplValueEquals( | ||
"Total Internal Fees Transferred", | ||
0.012, | ||
); | ||
cy.assertAnalyticsSimplValueEquals("Total SNARK Fees", "0.0"); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters