|
@@ -45,7 +45,7 @@ describe('XRPIO', () => {
|
45
|
45
|
|
46
|
46
|
let txHash
|
47
|
47
|
it('writeRaw', async function(){
|
48
|
|
- this.skip()
|
|
48
|
+// this.skip()
|
49
|
49
|
this.timeout(15000)
|
50
|
50
|
txHash = await api.writeRaw({data: TEST_DATA}, receiveWallet.address, sendWallet.secret);
|
51
|
51
|
expect(txHash).to.exist
|
|
@@ -53,7 +53,7 @@ describe('XRPIO', () => {
|
53
|
53
|
})
|
54
|
54
|
|
55
|
55
|
it('readRaw', async function () {
|
56
|
|
- this.skip()
|
|
56
|
+// this.skip()
|
57
|
57
|
this.timeout(15000)
|
58
|
58
|
const memo = await api.readRaw(txHash)
|
59
|
59
|
expect(memo).to.exist
|
|
@@ -61,7 +61,7 @@ describe('XRPIO', () => {
|
61
|
61
|
})
|
62
|
62
|
|
63
|
63
|
it('treeWrite', async function(){
|
64
|
|
- this.skip()
|
|
64
|
+// this.skip()
|
65
|
65
|
this.timeout(45000)
|
66
|
66
|
txHash = await api.treeWrite(longText, receiveWallet.address, sendWallet.secret)
|
67
|
67
|
expect(txHash).to.exist
|
|
@@ -69,7 +69,7 @@ describe('XRPIO', () => {
|
69
|
69
|
})
|
70
|
70
|
|
71
|
71
|
it('treeRead', async function(){
|
72
|
|
- this.skip()
|
|
72
|
+// this.skip()
|
73
|
73
|
this.timeout(45000)
|
74
|
74
|
txHash = await api.treeRead([txHash])
|
75
|
75
|
expect(txHash).to.exist
|