UNPKG

protractor-flake

Version:

A wrapper for protractor to automatically re-run failed specs for a specific number of attempts

99 lines (98 loc) 2.4 kB
{ "name": "protractor-flake", "description": "A wrapper for protractor to automatically re-run failed specs for a specific number of attempts", "main": "lib/index.js", "repository": { "type": "git", "url": "https://github.com/NickTomlin/protractor-flake.git" }, "scripts": { "serve": "bin/www", "lint": "standard", "test": "npm run lint && npm run test:unit", "test:unit": "mocha --opts test/unit/mocha.opts", "test:integration": "npm run build && npm run webdriver:update && mocha --opts test/integration/mocha.opts --slow 30001 --timeout 30000 --reporter tap", "test:dev": "mocha --watch --opts test/unit/mocha.opts", "build": "tsc", "prepare": "npm run build", "semantic-release": "semantic-release", "webdriver:update": "webdriver-manager update --standalone false --gecko false" }, "bin": "./bin/protractor-flake", "author": "Nick Tomlin", "contributors": [ { "name": "Oliver Daems" }, { "name": "Wim Selles", "email": "wim@wswebcreation.nl" } ], "license": "ISC", "devDependencies": { "@types/chai": "^4.1.4", "@types/mocha": "^5.2.4", "@types/node": "^10.12.18", "@types/proxyquire": "^1.3.28", "@types/sinon": "5.0.1", "chai": "^3.2.0", "cookie-parser": "^1.3.5", "express": "^4.16.3", "express-session": "^1.15.6", "mocha": "^5.2.0", "morgan": "^1.9.1", "mversion": "^1.12.0", "protractor": "^5.4.2", "proxyquire": "^1.6.0", "puppeteer": "^1.12.1", "semantic-release": "^15.6.2", "sinon": "^6.1.0", "sinon-chai": "^3.2.0", "standard": "^11.0.1", "ts-node": "^7.0.0", "typescript": "^2.9.2" }, "dependencies": { "chalk": "^2.4.1", "minimist": "^1.1.2", "webdriver-manager": "^12.1.1" }, "peerDependencies": { "protractor": ">= 2.x" }, "keywords": [ "protractor", "flake", "retry" ], "standard": { "ignore": [ "test/integration/support/protractor-config", "lib" ], "globals": [ "describe", "context", "before", "sandbox", "beforeEach", "after", "afterEach", "it", "expect", "sinon", "browser", "$" ] }, "files": [ "lib/**", "bin/protractor-flake" ], "types": "lib/index.d.ts", "engines": { "node": ">=6.9.x" }, "version": "4.0.0" }