Skip to content

Commit

Permalink
Merge pull request #3 from tkey/feat/enableTests
Browse files Browse the repository at this point in the history
fix: enable tests for import tss key
  • Loading branch information
himanshuchawla009 authored Oct 3, 2023
2 parents 1b2c24b + b1ff85b commit 3587e2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/default/test/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export const sharedTestCases = (mode, torusSP, storageLayer) => {
strictEqual(tssPubKey.y.toString(16, 64), tssCommits[0].y.toString(16, 64));
});

it.skip(`#should be able to import a tss key, manualSync=${mode}`, async function () {
it(`#should be able to import a tss key, manualSync=${mode}`, async function () {
const sp = customSP;

if (!sp.useTSS) this.skip();
Expand Down Expand Up @@ -360,7 +360,7 @@ export const sharedTestCases = (mode, torusSP, storageLayer) => {
strictEqual(tssPrivKeyImported.toString("hex"), importedKey.toString("hex"));
});

it.skip(`#should be able to unsafe export final tss key, manualSync=${mode}`, async function () {
it(`#should be able to unsafe export final tss key, manualSync=${mode}`, async function () {
const sp = customSP;

if (!sp.useTSS) this.skip();
Expand Down

0 comments on commit 3587e2f

Please sign in to comment.