mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-24 17:36:14 -04:00
lint: Rerun eslint --fix
to nuke trailing function call commas
eslint-config-etherpad 1.0.11 changed the comma-dangle rule to
prohibit trailing commas for function arguments. See:
673ab07acf
Re-run the automated fixes to apply the rule change.
This also fixes a few lint issues in changes that were made after
`eslint --fix` was originally run.
This commit is contained in:
parent
98967735d5
commit
107942ad8a
8 changed files with 11 additions and 11 deletions
|
@ -18,7 +18,7 @@ xdescribe('timeslider button takes you to the timeslider of a pad', function ()
|
|||
const modifiedValue = $firstTextElement.text(); // get the modified value
|
||||
expect(modifiedValue).not.to.be(originalValue); // expect the value to change
|
||||
|
||||
helper.waitFor(() => modifiedValue !== originalValue, // The value has changed so we can..
|
||||
helper.waitFor(() => modifiedValue !== originalValue // The value has changed so we can..
|
||||
).done(() => {
|
||||
const $timesliderButton = chrome$('#timesliderlink');
|
||||
$timesliderButton.click(); // So click the timeslider link
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue