Skip to content

Commit

Permalink
test: remove .skip function call, it's not implemented in bmocha
Browse files Browse the repository at this point in the history
  • Loading branch information
braydonf committed Dec 5, 2018
1 parent 604f4d0 commit 75dbdcb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 33 deletions.
24 changes: 8 additions & 16 deletions test/wallet-pagination-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)', () => {
Expand Down Expand Up @@ -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)', () => {
Expand All @@ -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', () => {
Expand Down
25 changes: 8 additions & 17 deletions test/wallet-unconfirmed-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)', () => {
Expand Down Expand Up @@ -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)', () => {
Expand Down Expand Up @@ -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', () => {
Expand Down

0 comments on commit 75dbdcb

Please sign in to comment.