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>
This commit is contained in:
parent
21551d7884
commit
22f9d0519a
|
@ -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…
Reference in New Issue