Skip to content

Commit 7c616fe

Browse files
committed
chore: @cloudcmd/fileop: actions: lint ☘️
1 parent b3d5b28 commit 7c616fe

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,10 @@ const error = (op) => (data) => {
7979
};
8080

8181
const op = await operator.copy(from, to, names);
82-
82+
8383
op.on('progress', progress);
84-
op.on('end', end(op)); op.on('error', error(op));
84+
op.on('end', end(op));
85+
op.on('error', error(op));
8586
```
8687

8788
## Server

test/client/fileop.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ test('client: auth: reject', async (t) => {
283283
done();
284284
destroy();
285285

286-
t.pass('shoud reject');
286+
t.pass('should reject');
287287
t.end();
288288
});
289289

@@ -313,6 +313,6 @@ test('client: options', async (t) => {
313313
done();
314314
destroy();
315315

316-
t.pass('shoud accept');
316+
t.pass('should accept');
317317
t.end();
318318
});

test/server/fileop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test('fileop: options: empty object', async (t) => {
2424

2525
done();
2626

27-
t.pass('conect with empty options');
27+
t.pass('connect with empty options');
2828
t.end();
2929
});
3030

0 commit comments

Comments
 (0)