├── .gitignore ├── .npmignore ├── .nvmrc ├── .nycrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── docs ├── add-new-service.png ├── script-file-path.png └── select-ping-service.png ├── index.js ├── package.json └── test ├── mocks ├── nightmare-fail-complex.js ├── nightmare-fail.js └── nightmare-success.js └── test-plugin.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v7.3.0 2 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/.nycrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/README.md -------------------------------------------------------------------------------- /docs/add-new-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/docs/add-new-service.png -------------------------------------------------------------------------------- /docs/script-file-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/docs/script-file-path.png -------------------------------------------------------------------------------- /docs/select-ping-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/docs/select-ping-service.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/package.json -------------------------------------------------------------------------------- /test/mocks/nightmare-fail-complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/test/mocks/nightmare-fail-complex.js -------------------------------------------------------------------------------- /test/mocks/nightmare-fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/test/mocks/nightmare-fail.js -------------------------------------------------------------------------------- /test/mocks/nightmare-success.js: -------------------------------------------------------------------------------- 1 | // Intentionally empty! 2 | // Simulates a successful exit 3 | -------------------------------------------------------------------------------- /test/test-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/watchmen-ping-nightmare/HEAD/test/test-plugin.js --------------------------------------------------------------------------------