-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
error check fixed for non commitment lookups
- Loading branch information
1 parent
8d999e5
commit f83417e
Showing
3 changed files
with
10 additions
and
13 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
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 |
---|---|---|
|
@@ -74,7 +74,7 @@ describe.only("torus utils sapphire devnet", function () { | |
}); | ||
}); | ||
|
||
it.only("should be able to login a v1 user", async function () { | ||
it("should be able to login a v1 user", async function () { | ||
const email = "[email protected]"; | ||
const verifier = "google-lrc"; | ||
const token = generateIdToken(email, "ES256"); | ||
|
@@ -122,11 +122,6 @@ describe.only("torus utils sapphire devnet", function () { | |
}, | ||
nodesData: retrieveSharesResponse.nodesData, | ||
}); | ||
const retrieveSharesResponse1 = await legacyTorus.retrieveShares( | ||
getRetrieveSharesParams(torusNodeEndpoints, torusIndexes, TORUS_TEST_VERIFIER, { verifier_id: email }, token, torusNodePub) | ||
); | ||
// eslint-disable-next-line no-console | ||
console.log("retrieveSharesResponse1", retrieveSharesResponse1); | ||
}); | ||
|
||
it("should fetch user type and public address of legacy v2 user", async function () { | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ const TORUS_TEST_EMAIL = "[email protected]"; | |
const TORUS_TEST_VERIFIER = "torus-test-health"; | ||
const TORUS_TEST_AGGREGATE_VERIFIER = "torus-test-health-aggregate"; | ||
|
||
describe("torus utils migrated testnet on sapphire", function () { | ||
describe.only("torus utils migrated testnet on sapphire", function () { | ||
let torus: TorusUtils; | ||
let TORUS_NODE_MANAGER: NodeDetailManager; | ||
|
||
|