From 75dbdcb6c672639a65749a3c7fe4d0c17ef9b36a Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Wed, 5 Dec 2018 13:50:52 -0800 Subject: [PATCH] test: remove `.skip` function call, it's not implemented in bmocha --- test/wallet-pagination-test.js | 24 ++++++++---------------- test/wallet-unconfirmed-test.js | 25 ++++++++----------------- 2 files changed, 16 insertions(+), 33 deletions(-) diff --git a/test/wallet-pagination-test.js b/test/wallet-pagination-test.js index 146d04b18b..a2244306a8 100644 --- a/test/wallet-pagination-test.js +++ b/test/wallet-pagination-test.js @@ -112,12 +112,9 @@ describe('Wallet TX Pagination', function() { assert.strictEqual(two[99].confirmations, 4); }); - it('third page after new block (no shifting)', async () => { - - }); - - it('last page', async () => { - }); + // TODO + // - third page after new block (no shifting) + // - last page }); describe('get transaction history (asc)', () => { @@ -149,13 +146,9 @@ describe('Wallet TX Pagination', function() { assert.notStrictEqual(two[0].txid, one[11].txid); }); - it.skip('third page after new block (no shifting)', async () => { - - }); - - it.skip('last page', async () => { - - }); + // TODO + // - third page after new block (no shifting) + // - last page }); describe('get transaction history by timestamp (asc)', () => { @@ -177,9 +170,8 @@ describe('Wallet TX Pagination', function() { assert.strictEqual(history[99].confirmations, 3); // TODO this will sometimes be 2 }); - it.skip('arbitrary date', async () => { - - }); + // TODO + // - last arbitrary date }); describe('chain reorganizations', () => { diff --git a/test/wallet-unconfirmed-test.js b/test/wallet-unconfirmed-test.js index 14406b3252..a2bd87a3f3 100644 --- a/test/wallet-unconfirmed-test.js +++ b/test/wallet-unconfirmed-test.js @@ -157,13 +157,9 @@ describe('Wallet Unconfirmed TX', function() { assert.strictEqual(a > b, true); }); - it.skip('third page after new block (no shifting)', async () => { - - }); - - it.skip('last page', async () => { - - }); + // TODO + // - third page after new block (no shifting) + // - last page }); describe('get transaction history (asc)', () => { @@ -211,13 +207,9 @@ describe('Wallet Unconfirmed TX', function() { assert.notStrictEqual(two[0].txid, one[99].txid); }); - it.skip('third page after new block (no shifting)', async () => { - - }); - - it.skip('last page', async () => { - - }); + // TODO + // - third page after new block (no shifting) + // - last page }); describe('get transaction history by timestamp (asc)', () => { @@ -255,9 +247,8 @@ describe('Wallet Unconfirmed TX', function() { assert.strictEqual(a > b, true); }); - it.skip('arbitrary date', async () => { - - }); + // TODO + // - arbitrary date }); describe('chain rollback', () => {