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.
1 parent 56be4b5 commit c66e058Copy full SHA for c66e058
lib/mocha/gherkin.js
@@ -107,7 +107,7 @@ module.exports = (text, file) => {
107
)
108
continue
109
}
110
- if (child.scenario && (currentLanguage ? currentLanguage.scenarioOutline.includes(child.scenario.keyword) : child.scenario.keyword === 'Scenario Outline')) {
+ if (child.scenario && (currentLanguage ? currentLanguage.contexts.ScenarioOutline.includes(child.scenario.keyword) : child.scenario.keyword === 'Scenario Outline')) {
111
for (const examples of child.scenario.examples) {
112
const fields = examples.tableHeader.cells.map(c => c.value)
113
for (const example of examples.tableBody) {
0 commit comments