Skip to content

Commit

Permalink
reduce test count
Browse files Browse the repository at this point in the history
  • Loading branch information
mike dupont committed Sep 28, 2024
1 parent b6347d2 commit a199674
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
unit-tests:
TESTS="/app/dist/node/lib/util/base58.unit-test.js" docker compose build unit-tests-local
TESTS="/app/dist/node/lib/util/base58.unit-test.js" docker compose up unit-tests-local
BUILDKIT_PROGRESS=plain TESTS="/app/dist/node/lib/util/base58.unit-test.js" docker compose build unit-tests-local
BUILDKIT_PROGRESS=plain TESTS="/app/dist/node/lib/util/base58.unit-test.js" docker compose up unit-tests-local

test:
docker compose build mina-local-network
Expand Down
2 changes: 1 addition & 1 deletion src/lib/util/base58.unit-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { test, Random, withHardCoded } from '../testing/property.js';

let mlTest = await Test();

for (var i=0; i < 1000; i++) {
for (var i=0; i < 300; i++) {
let bytes = withHardCoded(
Random.bytes(Random.nat(100)),
[0, 0, 0, 0] // definitely test some zero bytes
Expand Down

0 comments on commit a199674

Please sign in to comment.