Skip to content

Commit

Permalink
chore(examples): Removed --disableChecks as it's not required as of P…
Browse files Browse the repository at this point in the history
…rotractor 5.1

Added an example of running in "demo mode" to todomvc-protractor-cucumber
  • Loading branch information
jan-molak committed Feb 19, 2017
1 parent 9aeefc5 commit 86e8d9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Expand Up @@ -36,6 +36,5 @@ exports.config = {
maxInstances: 2
},

restartBrowserBetweenTests: true,
disableChecks: true
restartBrowserBetweenTests: true
};
7 changes: 4 additions & 3 deletions examples/todomvc-protractor-cucumber/package.json
Expand Up @@ -9,11 +9,12 @@
"pretest": "serenity update",
"pree2e": "npm run lint && npm run webdriver:update -- --standalone --versions.standalone=2.53.1",
"e2e": "protractor ./protractor.conf.js",
"e2e-single": "protractor ./protractor.conf.js --disableChecks --cucumberOpts.name",
"e2e-single": "protractor ./protractor.conf.js --cucumberOpts.name",
"report": "serenity run",
"test": "failsafe e2e report",
"webdriver-manager": "webdriver-manager",
"webdriver:update": "npm run webdriver-manager update"
"webdriver:update": "webdriver-manager update",
"proxy": "webdriver-manager start",
"e2e-demo": "protractor ./protractor.conf.js --highlightDelay 2000 --seleniumAddress http://localhost:4444/wd/hub"
},
"author": "Jan Molak <jan.molak@smartcodeltd.co.uk>",
"license": "Apache-2.0",
Expand Down
3 changes: 1 addition & 2 deletions examples/todomvc-protractor-cucumber/protractor.conf.js
Expand Up @@ -42,6 +42,5 @@ exports.config = {
maxInstances: 2
},

restartBrowserBetweenTests: true,
disableChecks: true
restartBrowserBetweenTests: true
};

0 comments on commit 86e8d9f

Please sign in to comment.