test: SignerListSet transaction integration tests (#1621)

* add tests

* clean up helper functions

* fix account funding

* remove unneeded method

* use new wallets for each test

* automatically fund wallets

* fix TODO
This commit is contained in:
Mayukha Vadari
2021-09-17 10:35:17 -04:00
parent e53df109b0
commit 05e1d4d3c5
7 changed files with 97 additions and 112 deletions

View File

@@ -26,7 +26,7 @@ describe('Utility method integration tests', function () {
status: 'success',
type: 'response',
}
assert.deepEqual(response, expected)
assert.deepEqual(_.omit(response, 'id'), _.omit(expected, 'id'))
})
it('random', async function () {
@@ -41,7 +41,6 @@ describe('Utility method integration tests', function () {
status: 'success',
type: 'response',
}
assert.equal(response.id, expected.id)
assert.equal(response.status, expected.status)
assert.equal(response.type, expected.type)
assert.equal(response.result.random.length, 64)