Skip to content

Commit ed96276

Browse files
debug
1 parent 241041e commit ed96276

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/integration/escape/powershell.test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ runTest(`input is escaped for ${constants.binPowerShellNoExt}`, (t) => {
1717
const { expected, input, options } = scenario;
1818
const shescape = new Shescape(options);
1919
const result = shescape.escape(input);
20-
t.is(result, expected);
20+
t.is(
21+
result,
22+
expected,
23+
`in: |${input}|, actual: |${result}|, expected: |${expected}|`,
24+
);
2125
}
2226
});

0 commit comments

Comments
 (0)