We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3384411 commit 308c1e1Copy full SHA for 308c1e1
src/keypair.test.ts
@@ -15,7 +15,7 @@ describe('gen keypair', () => {
15
expect(publicKeyObj1.asymmetricKeyType).toBe('rsa');
16
const publicKeyObj2 = crypto.createPublicKey(keypair2.publicKey);
17
expect(publicKeyObj2.asymmetricKeyType).toBe('rsa');
18
- });
+ }, 30 * 1000); // GitHub Actionsだと結構長めにとる必要があるらしい
19
20
test('genEd25519KeyPair', async () => {
21
const keypair1 = await genEd25519KeyPair();
0 commit comments