Skip to content

Commit

Permalink
fix: remove unecessary test case
Browse files Browse the repository at this point in the history
  • Loading branch information
vvava committed Oct 29, 2024
1 parent a089dbb commit 5a4af6f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/utils/isAddressValid.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ describe('src/utils/isAddressValid.ts', () => {
});

describe('isValidPvmAddress', () => {
it('should return false if address does not start with P-', async () => {
const result = isValidPvmAddress(address);
expect(result).toEqual(false);
});
it('should return false if not valid', async () => {
const result = isValidPvmAddress(`P-testAddress}`);
expect(result).toEqual(false);
Expand Down

0 comments on commit 5a4af6f

Please sign in to comment.