diff --git a/core/.eslintrc.passing.json b/core/.eslintrc.passing.json index 3ee572f109c200f21d1b373747070a5e4afab37a..52bbfc7e42da27118d999bbbacc54db5a7dc8cd7 100644 --- a/core/.eslintrc.passing.json +++ b/core/.eslintrc.passing.json @@ -13,7 +13,6 @@ "react/no-this-in-sfc": "off", "react/destructuring-assignment": "off", "implicit-arrow-linebreak": "off", - "import/named": "off", - "spaced-comment": "off" + "import/named": "off" } } diff --git a/core/tests/Drupal/Nightwatch/Tests/exampleTest.js b/core/tests/Drupal/Nightwatch/Tests/exampleTest.js index eeb1f4af96abdf753ef4dbd24d7392666ada1ac9..42871c25de2ad36c2d10290b54572e7563edcb60 100644 --- a/core/tests/Drupal/Nightwatch/Tests/exampleTest.js +++ b/core/tests/Drupal/Nightwatch/Tests/exampleTest.js @@ -15,17 +15,4 @@ module.exports = { .assert.containsText('body', 'Test page text') .drupalLogAndEnd({ onlyOnError: false }); }, - /** - 'Example failing test': (browser) => { - browser - // Change this to point at a site which has some console errors, as the - // test site that was just installed doesn't. - .url('https://www./') - .waitForElementVisible('h1', 1000) - // Wait for some errors to build up. - .pause(5000) - .assert.containsText('h1', 'I\'m the operator with my pocket calculator') - .drupalLogAndEnd(); - }, - **/ };