Skip to content

Commit

Permalink
fix: enable tests for import tss key
Browse files Browse the repository at this point in the history
  • Loading branch information
ieow committed Oct 3, 2023
1 parent 1b2c24b commit b1ff85b
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 b1ff85b

Please sign in to comment.