Skip to content

Commit 308c1e1

Browse files
committed
expand timeout
1 parent 3384411 commit 308c1e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/keypair.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('gen keypair', () => {
1515
expect(publicKeyObj1.asymmetricKeyType).toBe('rsa');
1616
const publicKeyObj2 = crypto.createPublicKey(keypair2.publicKey);
1717
expect(publicKeyObj2.asymmetricKeyType).toBe('rsa');
18-
});
18+
}, 30 * 1000); // GitHub Actionsだと結構長めにとる必要があるらしい
1919

2020
test('genEd25519KeyPair', async () => {
2121
const keypair1 = await genEd25519KeyPair();

0 commit comments

Comments
 (0)