Skip to content

Commit

Permalink
Fixing up phrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-alvarez committed Feb 24, 2017
1 parent eec5736 commit 34c65fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integration/components/ember-scrollbar-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ test('clicking on bar triggers onJumpTo and not startDrag', function(assert) {
});


test('Horizontal: onJumpTo has positive first argument when click to the left of handle', function(assert) {
test('Horizontal: onJumpTo first argument is true when click to the left of handle', function(assert) {
assert.expect(1);

const deltaX = 9; // some number less than 10, therefore `towardsAnchor` will be true
Expand Down Expand Up @@ -171,7 +171,7 @@ test('Horizontal: onJumpTo has positive first argument when click to the left of

});

test('Horizontal: onJumpTo has negative first argument when click to the right of handle', function(assert) {
test('Horizontal: onJumpTo first argument is false when click to the right of handle', function(assert) {
assert.expect(1);

const deltaX = 30; // more than offset of 10
Expand Down Expand Up @@ -205,7 +205,7 @@ test('Horizontal: onJumpTo has negative first argument when click to the right o
});


test('Vertical: onJumpTo has positive first argument when click to the top of handle', function(assert) {
test('Vertical: onJumpTo first argument is true when click to the top of handle', function(assert) {
assert.expect(1);

const deltaY = 2; // less than offset of 10
Expand Down Expand Up @@ -238,7 +238,7 @@ test('Vertical: onJumpTo has positive first argument when click to the top of ha

});

test('Vertical: onJumpTo has negative first argument when clicking below the vertical handle', function(assert) {
test('Vertical: onJumpTo first argument is false when clicking below the vertical handle', function(assert) {
assert.expect(1);

const deltaY = 30; // more than offset of 10
Expand Down

0 comments on commit 34c65fb

Please sign in to comment.