Browse Source

Update comments in tests

Menu and home are not always visible; home is always visible, but menu
is shown only when needed.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
pull/8588/head
Daniel Calviño Sánchez 9 years ago
parent
commit
ad71abca6f
  1. 7
      apps/files/tests/js/breadcrumbSpec.js

7
apps/files/tests/js/breadcrumbSpec.js

@ -290,7 +290,8 @@ describe('OCA.Files.BreadCrumb tests', function() {
$crumbs = bc.$el.find('.crumb');
// Menu and home are always visible
// Second, third, fourth and fifth crumb are hidden and everything
// else is visible
expect($crumbs.eq(0).hasClass('hidden')).toEqual(false);
expect($crumbs.eq(1).hasClass('hidden')).toEqual(false);
@ -309,7 +310,7 @@ describe('OCA.Files.BreadCrumb tests', function() {
$crumbs = bc.$el.find('.crumb');
// Menu and home are always visible
// Third and fourth crumb are hidden and everything else is visible
expect($crumbs.eq(0).hasClass('hidden')).toEqual(false);
expect($crumbs.eq(1).hasClass('hidden')).toEqual(false);
@ -518,7 +519,7 @@ describe('OCA.Files.BreadCrumb tests', function() {
$('#controls').width(950);
bc._resize();
// Menu and home are always visible
// Third crumb is hidden and everything else is visible
expect($crumbs.eq(0).hasClass('hidden')).toEqual(false);
expect($crumbs.eq(1).hasClass('hidden')).toEqual(false);

Loading…
Cancel
Save