Skip to content

Commit 9fcade9

Browse files
committed
chore: @putout/plugin-printer: v8.2.0
1 parent a5a9376 commit 9fcade9

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

packages/plugin-printer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@putout/plugin-printer",
3-
"version": "8.1.0",
3+
"version": "8.2.0",
44
"type": "module",
55
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
66
"description": "🐊Putout plugin adds support of transformations for @putout/printer",

packages/putout/lib/cli/index.spec.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,9 @@ test('putout: cli: -i: cancel', async (t) => {
222222
simpleImport,
223223
});
224224

225-
t.calledWith(halt, [INTERACTIVE_CANCELED]);
225+
t.calledWith(halt, [
226+
INTERACTIVE_CANCELED,
227+
]);
226228
t.end();
227229
});
228230

@@ -1756,7 +1758,9 @@ test('putout: cli: --staged: error code', async (t) => {
17561758
cliStaged,
17571759
});
17581760

1759-
t.calledWith(halt, [CANNOT_LINT_STAGED]);
1761+
t.calledWith(halt, [
1762+
CANNOT_LINT_STAGED,
1763+
]);
17601764
t.end();
17611765
});
17621766

@@ -1835,7 +1839,9 @@ test('putout: cli: cannot load processor', async (t) => {
18351839
getOptions,
18361840
});
18371841

1838-
t.calledWith(halt, [CANNOT_LOAD_PROCESSOR], 'should exit with CANNOT_LOAD_PROCESSOR code');
1842+
t.calledWith(halt, [
1843+
CANNOT_LOAD_PROCESSOR,
1844+
], 'should exit with CANNOT_LOAD_PROCESSOR code');
18391845
t.end();
18401846
});
18411847

0 commit comments

Comments
 (0)