Skip to content

Commit cc48935

Browse files
committed
fixup! Test large tx in tendermint integration test
1 parent e247001 commit cc48935

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/integration.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ test('app info resolves over RPC', async (t) => {
4646
t.deepEqual(rpcResponse, { response: info })
4747
})
4848

49-
test.only('large tx', async (t) => {
49+
test('large tx', async (t) => {
5050
let { ports, node } = t.context
5151

5252
let server = createAbciServer({
@@ -78,6 +78,6 @@ test.only('large tx', async (t) => {
7878
let res = await node.rpc.broadcastTxCommit({
7979
tx: '0x' + Buffer.allocUnsafe(10e3).toString('hex')
8080
})
81-
82-
t.pass()
81+
t.falsy(res.check_tx.code)
82+
t.falsy(res.deliver_tx.code)
8383
})

0 commit comments

Comments
 (0)