Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Merged
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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"test:vp": "jest -i vp.test.ts",
"test:delegation": "jest -i delegation.test.ts",
"test:validation": "jest -i validation.test.ts",
"test:integration": "jest -i test/integration/",
Copy link

Copilot AI Jun 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Refine the Jest test script to target only integration test files, for example: "jest -i "test/integration/**/*.test.ts"" to avoid running unrelated files.

Suggested change
"test:integration": "jest -i test/integration/",
"test:integration": "jest -i \"test/integration/**/*.test.ts\"",

Copilot uses AI. Check for mistakes.
"test:unit": "jest -i test/unit/",
"prepublishOnly": "npm run build",
"postinstall": "npm run build",
Expand Down
1 change: 1 addition & 0 deletions src/validations/validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export default class Validation {
this.params = params;
}

// TODO: validate invalid networks
async validate(customAuthor = this.author): Promise<boolean> {
try {
this.validateAddressType(customAuthor);
Expand Down
Loading
Loading