Skip to content

Commit

Permalink
Updated tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomilar committed Nov 1, 2024
1 parent b5a4bce commit 75d49e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/skyId.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('SkyID Adapter', function() {
ident.displayName = name;
im.addIdentity(ident);
await rld.commit(null, null, im);
}).timeout(2000);
}).timeout(6000);

it('change password', async () => {
let rld = new EcRemoteIdentityManager();
Expand All @@ -39,7 +39,7 @@ describe('SkyID Adapter', function() {
assert.equal(im.ids[0].ppk.toPem(), ident.ppk.toPem());
rld.changePassword(username, password, newPassword);
await rld.commit(null, null, im);
}).timeout(2000);
}).timeout(6000);

it('load user', async () => {
let rld = new EcRemoteIdentityManager();
Expand All @@ -48,5 +48,5 @@ describe('SkyID Adapter', function() {
rld.startLogin(username, newPassword);
let im = await rld.fetch();
assert.equal(im.ids[0].ppk.toPem(), ident.ppk.toPem());
}).timeout(2000);
}).timeout(6000);
});

0 comments on commit 75d49e8

Please sign in to comment.