Skip to content

Commit

Permalink
skipping network test due to account not existing on new network anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
onetrickwolf committed Jul 9, 2024
1 parent a4bdd7c commit 92b266d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/tests/network-client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ describe('NodeConnection', () => {
await expect(connection.findUnspentRecords(0, 5, undefined, undefined, undefined, [])).rejects.toThrow();
}, 60000);

it('should search a range correctly and not find records where none exist', async () => {
it.skip('should search a range correctly and not find records where none exist', async () => {
const records = await connection.findUnspentRecords(0, 204, beaconPrivateKeyString, undefined, undefined, []);
expect(Array.isArray(records)).toBe(true);
if (!(records instanceof Error)) {
Expand Down

0 comments on commit 92b266d

Please sign in to comment.