Skip to content

Commit 0a0a2e1

Browse files
committed
[Tests] parsers: add settings into debugging comment
1 parent b5d24c5 commit 0a0a2e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/helpers/parsers.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ const parsers = {
6464
`features: [${Array.from(features).join(',')}]`,
6565
`parser: ${parser}`,
6666
testObject.parserOptions ? `parserOptions: ${JSON.stringify(testObject.parserOptions)}` : [],
67-
testObject.options ? `options: ${JSON.stringify(testObject.options)}` : []
67+
testObject.options ? `options: ${JSON.stringify(testObject.options)}` : [],
68+
testObject.settings ? `settings: ${JSON.stringify(testObject.settings)}` : []
6869
);
6970

7071
const extraComment = `\n// ${extras.join(', ')}`;

0 commit comments

Comments
 (0)