mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 00:46:16 -04:00
lint: Run eslint --fix
This commit is contained in:
parent
8eb310854d
commit
c8211f2898
9 changed files with 23 additions and 23 deletions
|
@ -65,7 +65,7 @@ describe('Plugins page', function () {
|
|||
// Ensure it's a higher minor version IE 0.3.x as 0.2.x was installed
|
||||
// Coverage for https://github.com/ether/etherpad-lite/issues/4536
|
||||
await helper.waitForPromise(() => parseInt(helper.admin$(
|
||||
'.ep_align .version'
|
||||
'.ep_align .version',
|
||||
)
|
||||
.text()
|
||||
.split('.')[1]) > minorVersionBefore, 60000, 1000);
|
||||
|
|
|
@ -92,7 +92,7 @@ describe('change user color', function () {
|
|||
$chatInput.sendkeys('{enter}');
|
||||
|
||||
// wait until the chat message shows up
|
||||
helper.waitFor(() => chrome$('#chattext').children('p').length !== 0
|
||||
helper.waitFor(() => chrome$('#chattext').children('p').length !== 0,
|
||||
).done(() => {
|
||||
const $firstChatMessage = chrome$('#chattext').children('p');
|
||||
// expect the first chat message to be of the user's color
|
||||
|
|
|
@ -227,7 +227,7 @@ describe('easysync-mutations', function () {
|
|||
|
||||
// turn 123\n 456\n 789\n into 123\n 4<b>5</b>6\n 789\n
|
||||
runMutateAttributionTest(1,
|
||||
['bold,true'], 'Z:c>0|1=4=1*0=1$', ['|1+4', '|1+4', '|1+4'], ['|1+4', '+1*0+1|1+2', '|1+4']
|
||||
['bold,true'], 'Z:c>0|1=4=1*0=1$', ['|1+4', '|1+4', '|1+4'], ['|1+4', '+1*0+1|1+2', '|1+4'],
|
||||
);
|
||||
|
||||
// make a document bold
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue