Skip to content

Commit 8b0d5a4

Browse files
authored
feat: add stamp create, utility get-bee and utility redeem commands (#551)
* feat: add stamp create, utility get-bee and utility redeem commands * style: adjust code style * test: fix tests * chore: simplify wording * test: increase timeout * feat: check for minimumAmount * test: fix zero price per block in test * fix: fix stamp picker remaining capacity * fix: remove 1h case from ttl description
1 parent 3525734 commit 8b0d5a4

File tree

18 files changed

+1371
-162
lines changed

18 files changed

+1371
-162
lines changed

jest.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* https://jestjs.io/docs/en/configuration.html
44
*/
55
import type { Config } from '@jest/types'
6+
import { Dates } from 'cafe-utility'
67
import { getPssAddress } from './test/utility/address'
78
import { getOrBuyStamp } from './test/utility/stamp'
89

@@ -52,6 +53,6 @@ export default async (): Promise<Config.InitialOptions> => {
5253
testPathIgnorePatterns: ['/node_modules/'],
5354

5455
// Increase timeout since we have long running cryptographic functions
55-
testTimeout: 4 * 60 * 1000,
56+
testTimeout: Dates.minutes(5),
5657
}
5758
}

0 commit comments

Comments
 (0)