diff --git a/tests/decodeMigrationUri.test.ts b/tests/decodeMigrationUri.test.ts index 3690fb6..b06993a 100644 --- a/tests/decodeMigrationUri.test.ts +++ b/tests/decodeMigrationUri.test.ts @@ -4,5 +4,3 @@ test("Decode otpauth-migration URI", async () => { const data = await decodeMigrationUri("otpauth-migration://offline?data=Ch8KBdFBKZJTEgpUZXN0IFRva2VuGgQyRkFTIAEoATACEAEYASAAKIji6ej7%2F%2F%2F%2F%2FwE%3D"); expect(data).toStrictEqual([{ algorithm: "ALGO_SHA1", digits: 1, issuer: "2FAS", name: "Test Token", secret: "0UEpklM=", secretBase32: "2FASTEST", type: "OTP_TOTP" }]); }); - -// diff --git a/tests/decodeUriData.test.ts b/tests/decodeUriData.test.ts index 064157a..0f930af 100644 --- a/tests/decodeUriData.test.ts +++ b/tests/decodeUriData.test.ts @@ -4,5 +4,3 @@ test("Decode otpauth-migration URI", async () => { const data = await decodeMigrationUriData("Ch8KBdFBKZJTEgpUZXN0IFRva2VuGgQyRkFTIAEoATACEAEYASAAKIji6ej7/////wE="); expect(data).toStrictEqual([{ algorithm: "ALGO_SHA1", digits: 1, issuer: "2FAS", name: "Test Token", secret: "0UEpklM=", secretBase32: "2FASTEST", type: "OTP_TOTP" }]); }); - -//