Selaa lähdekoodia

Tests: Corrected expected button toggleable value.

Marek Lewandowski 6 vuotta sitten
vanhempi
commit
349eb191d2
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      packages/ckeditor5-page-break/tests/pagebreakui.js

+ 1 - 1
packages/ckeditor5-page-break/tests/pagebreakui.js

@@ -44,7 +44,7 @@ describe( 'PageBreakUI', () => {
 		expect( pageBreakView ).to.be.instanceOf( ButtonView );
 		expect( pageBreakView.label ).to.equal( 'Page break' );
 		expect( pageBreakView.icon ).to.match( /<svg / );
-		expect( pageBreakView.isToggleable ).to.be.true;
+		expect( pageBreakView.isToggleable ).to.be.false;
 	} );
 
 	it( 'should execute pageBreak command on model execute event', () => {