Skip to content

Commit

Permalink
Run scenarios fixed for spec explorer #42
Browse files Browse the repository at this point in the history
  • Loading branch information
riju91 committed Jan 15, 2018
1 parent 737dc83 commit 884c2d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
"properties": {
"gauge.specExplorer.enabled": {
"type": "boolean",
"default": false,
"default": true,
"description": "When true, gauge specs explorer will be alive and loaded."
},
"gauge.launch.enableDebugLogs": {
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function activate(context: ExtensionContext) {

context.subscriptions.push(commands.registerCommand(GaugeVSCodeCommands.ExecuteScenario, () => { return runScenario(clients, true) }));
context.subscriptions.push(commands.registerCommand(GaugeVSCodeCommands.ExecuteScenarios, (scn: Scenario) => {
if (scn) return execute(scn.executionIdentifier, { inParallel: false, status: scn.executionIdentifier });
if (scn) return execute(scn.executionIdentifier, { inParallel: false, status: scn.executionIdentifier, projectRoot: getDefaultFolder() });
return runScenario(clients, false);
}));
context.subscriptions.push(commands.registerCommand(GaugeVSCodeCommands.CopyStub, copyToClipboard));
Expand Down

0 comments on commit 884c2d8

Please sign in to comment.