Skip to content

Commit

Permalink
chore(test): remove defaults from test
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jan 15, 2025
1 parent a580d79 commit 17b2e8a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/e2e/esm/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -725,11 +725,10 @@ describe('e2e esm tests', async () => {
address: vaults[0].address,
vaultId: vaults[0].vaultId,
});
assert.deepEqual(vault, {
balance: 1,
startTimestamp: 1729962428678,
endTimestamp: 1731172028678,
});
assert.ok(vault);
assert.equal(typeof vault.balance, 'number');
assert.equal(typeof vault.startTimestamp, 'number');
assert.equal(typeof vault.endTimestamp, 'number');
}
});

Expand Down

0 comments on commit 17b2e8a

Please sign in to comment.