Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,5 @@ __pycache__/
env/
venv/
ENV/

.polytest*/
6 changes: 4 additions & 2 deletions packages/transact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@
"check-types": "tsc --noEmit",
"audit": "better-npm-audit audit",
"format": "prettier --config ../../.prettierrc.cjs --ignore-path ../../.prettierignore --write .",
"pre-commit": "run-s check-types lint:fix audit format test"
"pre-commit": "run-s check-types lint:fix audit format test",
"polytest:generate": "polytest --config test_configs/transact.jsonc --git https://github.com/joe-p/algokit-polytest#feat/update_transact generate -t vitest",
"polytest:run": "polytest --config test_configs/transact.jsonc --git https://github.com/joe-p/algokit-polytest#feat/update_transact run --no-parse -t vitest"
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@noble/ed25519": "^3.0.0"
}
}
}
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
test: {
projects: ['.', 'packages/*'],
include: ['**/*.spec.ts', '**/*.test.ts'],
exclude: ['node_modules'],
exclude: ['node_modules', '.polytest*'],
// Sometimes indexer catchup is slowwwww...
testTimeout: 20_000,
coverage: {
Expand Down
Loading