diff options
| author | Stephen Blott | 2014-11-22 15:16:35 +0000 |
|---|---|---|
| committer | Stephen Blott | 2014-11-22 15:16:35 +0000 |
| commit | 1c2730ca195fcc075fbfc8bc8993672ae978b246 (patch) | |
| tree | d84712064bb4cbe747f600246c63e146e7286c7b /tests/unit_tests | |
| parent | 0e4f78e5628eb3d33e4d7c441882ff00307d6e8f (diff) | |
| download | vimium-1c2730ca195fcc075fbfc8bc8993672ae978b246.tar.bz2 | |
Touch up tab recency.
Diffstat (limited to 'tests/unit_tests')
| -rw-r--r-- | tests/unit_tests/completion_test.coffee | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/unit_tests/completion_test.coffee b/tests/unit_tests/completion_test.coffee index 755d681e..e4966016 100644 --- a/tests/unit_tests/completion_test.coffee +++ b/tests/unit_tests/completion_test.coffee @@ -409,16 +409,16 @@ context "TabRecency", if @tabRecency.lastVisitedTime? @tabRecency.lastVisitedTime = new Date(@tabRecency.lastVisitedTime - @tabRecency.timeDelta) - @tabRecency.add 3 + @tabRecency.register 3 fakeTimeDeltaElapsing() - @tabRecency.add 2 + @tabRecency.register 2 fakeTimeDeltaElapsing() - @tabRecency.add 9 + @tabRecency.register 9 fakeTimeDeltaElapsing() - @tabRecency.add 1 - @tabRecency.remove 9 + @tabRecency.register 1 + @tabRecency.deregister 9 fakeTimeDeltaElapsing() - @tabRecency.add 4 + @tabRecency.register 4 fakeTimeDeltaElapsing() should "have entries for recently active tabs", -> @@ -442,9 +442,9 @@ context "TabRecency", should "rank tabs by recency", -> assert.isTrue @tabRecency.recencyScore(3) < @tabRecency.recencyScore 2 assert.isTrue @tabRecency.recencyScore(2) < @tabRecency.recencyScore 1 - @tabRecency.add 3 + @tabRecency.register 3 fakeTimeDeltaElapsing() - @tabRecency.add 4 # Making 3 the most recent tab which isn't the current tab. + @tabRecency.register 4 # Making 3 the most recent tab which isn't the current tab. assert.isTrue @tabRecency.recencyScore(1) < @tabRecency.recencyScore 3 assert.isTrue @tabRecency.recencyScore(2) < @tabRecency.recencyScore 3 assert.isTrue @tabRecency.recencyScore(4) < @tabRecency.recencyScore 3 |
