We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
parsers
settings
1 parent b5d24c5 commit 0a0a2e1Copy full SHA for 0a0a2e1
tests/helpers/parsers.js
@@ -64,7 +64,8 @@ const parsers = {
64
`features: [${Array.from(features).join(',')}]`,
65
`parser: ${parser}`,
66
testObject.parserOptions ? `parserOptions: ${JSON.stringify(testObject.parserOptions)}` : [],
67
- testObject.options ? `options: ${JSON.stringify(testObject.options)}` : []
+ testObject.options ? `options: ${JSON.stringify(testObject.options)}` : [],
68
+ testObject.settings ? `settings: ${JSON.stringify(testObject.settings)}` : []
69
);
70
71
const extraComment = `\n// ${extras.join(', ')}`;
0 commit comments