Issue #2983382 by ApacheEx, drpal: JS codestyle: spaced-comment

merge-requests/1654/head
Alex Pott 2018-07-06 15:18:38 +01:00
parent 83c47444f4
commit ca5abe8c6f
No known key found for this signature in database
GPG Key ID: 31905460D4A69276
2 changed files with 1 additions and 15 deletions

View File

@ -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"
}
}

View File

@ -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();
},
**/
};