Remove console logs
Some checks failed
Tests / sdk_tests (pull_request) Failing after 9m26s

This commit is contained in:
neeraj 2024-03-13 09:50:04 +05:30 committed by Prathamesh Musale
parent e3b842f2a8
commit 92cf9eb4d8

View File

@ -40,7 +40,7 @@ const nameserviceExpiryTests = () => {
privateKey,
fee
);
console.log('SetRecordResult: ' + result.id);
expect(result.id).toBeDefined();
const [record] = await registry.queryRecords({ type: 'WebsiteRegistrationRecord', version: watcher.record.version }, true);
recordExpiryTime = new Date(record.expiryTime);
@ -77,10 +77,8 @@ const nameserviceExpiryTests = () => {
authorityExpiryTime = updatedExpiryTime;
});
// TODO: Check bond balance not decreasing correctly
test('Check bond balance', async () => {
const [bond] = await registry.getBondsByIds([bondId]);
console.log(bond);
expect(bond).toBeDefined();
expect(bond.balance).toHaveLength(0);
});