-
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.
- Loading branch information
himanshu
committed
Jan 2, 2024
1 parent
331a9ef
commit c8ed4d4
Showing
4 changed files
with
6 additions
and
7 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import loglevel from "loglevel"; | ||
|
||
const log = loglevel.getLogger("torus.js"); | ||
log.enableAll(); | ||
log.disableAll(); | ||
|
||
export default log; |
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ const TORUS_TEST_EMAIL = "[email protected]"; | |
const TORUS_TEST_VERIFIER = "torus-test-health"; | ||
const TORUS_TEST_AGGREGATE_VERIFIER = "torus-test-health-aggregate"; | ||
|
||
describe.only("torus utils celeste", function () { | ||
describe("torus utils celeste", function () { | ||
let torus: TorusUtils; | ||
let TORUS_NODE_MANAGER: NodeManager; | ||
|
||
|
@@ -149,7 +149,7 @@ describe.only("torus utils celeste", function () { | |
expect(metadata.upgraded).to.equal(false); | ||
}); | ||
|
||
it.only("should be able to login", async function () { | ||
it("should be able to login", async function () { | ||
const token = generateIdToken(TORUS_TEST_EMAIL, "ES256"); | ||
const verifierDetails = { verifier: TORUS_TEST_VERIFIER, verifierId: TORUS_TEST_EMAIL }; | ||
const { torusNodeEndpoints, torusIndexes } = await TORUS_NODE_MANAGER.getNodeDetails(verifierDetails); | ||
|