diff --git a/core/modules/ckeditor5/tests/src/Nightwatch/Tests/ckEditor5EditorHeightTest.js b/core/modules/ckeditor5/tests/src/Nightwatch/Tests/ckEditor5EditorHeightTest.js index a70ff34f34..cdb24346e1 100644 --- a/core/modules/ckeditor5/tests/src/Nightwatch/Tests/ckEditor5EditorHeightTest.js +++ b/core/modules/ckeditor5/tests/src/Nightwatch/Tests/ckEditor5EditorHeightTest.js @@ -6,7 +6,7 @@ module.exports = { after(browser) { browser.drupalUninstall(); }, - 'Test page': (browser) => { + 'Ensure CKEditor respects field widget row value': (browser) => { browser.drupalLoginAsAdmin(() => { browser // Enable required modules. @@ -65,7 +65,7 @@ module.exports = { // We expect height to be 320, but test to ensure that it's greater // than 300. We want to ensure that we don't hard code a very specific // value because tests might break if styles change (line-height, etc). - // Note that the default height for CKEditor5 is 47. + // Note that the default height for CKEditor5 is 47px. return height > 300; }, [], @@ -159,7 +159,7 @@ module.exports = { // We expect height to be 640, but test to ensure that it's greater // than 600. We want to ensure that we don't hard code a very specific // value because tests might break if styles change (line-height, etc). - // Note that the default height for CKEditor5 is 47. + // Note that the default height for CKEditor5 is 47px. return height > 600; }, [],