mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-19 03:35:49 +00:00
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import { SignerListSet } from '../../../src'
|
|
import serverUrl from '../serverUrl'
|
|
import {
|
|
setupClient,
|
|
teardownClient,
|
|
type XrplIntegrationTestContext,
|
|
} from '../setup'
|
|
import { testTransaction } from '../utils'
|
|
|
|
// how long before each test case times out
|
|
const TIMEOUT = 20000
|
|
|
|
describe('SignerListSet', function () {
|
|
let testContext: XrplIntegrationTestContext
|
|
|
|
beforeEach(async () => {
|
|
testContext = await setupClient(serverUrl)
|
|
})
|
|
afterEach(async () => teardownClient(testContext))
|
|
|
|
it(
|
|
'base',
|
|
async () => {
|
|
const tx: SignerListSet = {
|
|
TransactionType: 'SignerListSet',
|
|
Account: testContext.wallet.classicAddress,
|
|
SignerEntries: [
|
|
{
|
|
SignerEntry: {
|
|
Account: 'r5nx8ZkwEbFztnc8Qyi22DE9JYjRzNmvs',
|
|
SignerWeight: 1,
|
|
},
|
|
},
|
|
{
|
|
SignerEntry: {
|
|
Account: 'r3RtUvGw9nMoJ5FuHxuoVJvcENhKtuF9ud',
|
|
SignerWeight: 1,
|
|
},
|
|
},
|
|
],
|
|
SignerQuorum: 2,
|
|
}
|
|
await testTransaction(testContext.client, tx, testContext.wallet)
|
|
},
|
|
TIMEOUT,
|
|
)
|
|
})
|