1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00

remove 4096 test

This commit is contained in:
Kyle Spearrin 2018-07-03 23:46:04 -04:00
parent ff8c1dfea9
commit 236c00475d

View File

@ -259,7 +259,9 @@ describe('WebCrypto Function Service', () => {
describe('rsaGenerateKeyPair', () => {
testRsaGenerateKeyPair(1024);
testRsaGenerateKeyPair(2048);
testRsaGenerateKeyPair(4096);
// Generating 4096 bit keys can be slow. Commenting it out to save CI.
// testRsaGenerateKeyPair(4096);
});
describe('randomBytes', () => {