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 feefca4 commit 6e98e9fCopy full SHA for 6e98e9f
src/wallet_dao.test.ts
@@ -3,7 +3,9 @@ import { fakeArweave } from '../tests/stubs';
3
import { SeedPhrase } from './exports';
4
import { WalletDAO } from './wallet_dao';
5
6
-describe('Wallet DAO', function () {
+// This test runs too slow to be included in the CI pipeline. But it provides a snapshot of the
7
+// seed phrase to wallet functionality and should be run locally before a release
8
+describe.skip('Wallet DAO', function () {
9
this.timeout(90_000);
10
const walletDAO = new WalletDAO(fakeArweave);
11
it('generateWallet from seedphrase function', async () => {
0 commit comments