Skip to content

Commit

Permalink
test: minor, cleanup todos
Browse files Browse the repository at this point in the history
  • Loading branch information
braydonf committed Jun 5, 2019
1 parent 7d77c0f commit 1f351b4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
11 changes: 0 additions & 11 deletions test/wallet-pagination-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,6 @@ describe('Wallet TX Pagination', function() {
assert.strictEqual(two[99].account, 'blue');
assert.strictEqual(two[99].confirmations, 4);
});

// TODO
// - third page after new block (no shifting)
// - last page (575 txs total)
});

describe('get transaction history (asc)', () => {
Expand Down Expand Up @@ -152,10 +148,6 @@ describe('Wallet TX Pagination', function() {
assert.strictEqual(two[11].confirmations, 102);
assert.notStrictEqual(two[0].txid, one[11].txid);
});

// TODO
// - third page after new block (no shifting)
// - last page
});

describe('get transaction history by timestamp', () => {
Expand Down Expand Up @@ -185,9 +177,6 @@ describe('Wallet TX Pagination', function() {
assert.strictEqual(history[99].confirmations, 2);
assert(a < b);
});

// TODO
// - last arbitrary date
});

describe('chain reorganizations', () => {
Expand Down
11 changes: 0 additions & 11 deletions test/wallet-unconfirmed-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,6 @@ describe('Wallet Unconfirmed TX', function() {
assert.strictEqual(Number.isInteger(d), true);
assert.strictEqual(a > b, true);
});

// TODO
// - third page after new block (no shifting)
// - last page
});

describe('get transaction history (asc)', () => {
Expand Down Expand Up @@ -213,10 +209,6 @@ describe('Wallet Unconfirmed TX', function() {

assert.notStrictEqual(two[0].txid, one[99].txid);
});

// TODO
// - third page after new block (no shifting)
// - last page
});

describe('get transaction history by timestamp (asc)', () => {
Expand Down Expand Up @@ -254,9 +246,6 @@ describe('Wallet Unconfirmed TX', function() {
assert.strictEqual(Number.isInteger(b), true);
assert.strictEqual(a > b, true);
});

// TODO
// - arbitrary date
});

describe('chain rollback', () => {
Expand Down

0 comments on commit 1f351b4

Please sign in to comment.