Last active
August 28, 2018 20:35
-
-
Save uzorjchibuzor/948cdeff5b03442234b5f8ab85c6465b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 info it worked if it ends with ok | |
| 1 verbose cli [ '/home/chibuzor/.nvm/versions/node/v10.1.0/bin/node', | |
| 1 verbose cli '/home/chibuzor/.nvm/versions/node/v10.1.0/bin/npm', | |
| 1 verbose cli 'run', | |
| 1 verbose cli 'test' ] | |
| 2 info using [email protected] | |
| 3 info using [email protected] | |
| 4 verbose run-script [ 'pretest', 'test', 'posttest' ] | |
| 5 info lifecycle [email protected]~pretest: [email protected] | |
| 6 info lifecycle [email protected]~test: [email protected] | |
| 7 verbose lifecycle [email protected]~test: unsafe-perm in lifecycle true | |
| 8 verbose lifecycle [email protected]~test: PATH: /home/chibuzor/.nvm/versions/node/v10.1.0/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/home/chibuzor/exercism/javascript/hello-world/node_modules/.bin:/home/chibuzor/.nvm/versions/node/v10.1.0/bin:/home/chibuzor/bin:/home/chibuzor/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin | |
| 9 verbose lifecycle [email protected]~test: CWD: /home/chibuzor/exercism/javascript/hello-world | |
| 10 silly lifecycle [email protected]~test: Args: [ '-c', 'jest --no-cache ./*' ] | |
| 11 silly lifecycle [email protected]~test: Returned: code: 1 signal: null | |
| 12 info lifecycle [email protected]~test: Failed to exec test script | |
| 13 verbose stack Error: [email protected] test: `jest --no-cache ./*` | |
| 13 verbose stack Exit status 1 | |
| 13 verbose stack at EventEmitter.<anonymous> (/home/chibuzor/.nvm/versions/node/v10.1.0/lib/node_modules/npm/node_modules/npm-lifecycle/index.js:304:16) | |
| 13 verbose stack at EventEmitter.emit (events.js:182:13) | |
| 13 verbose stack at ChildProcess.<anonymous> (/home/chibuzor/.nvm/versions/node/v10.1.0/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js:55:14) | |
| 13 verbose stack at ChildProcess.emit (events.js:182:13) | |
| 13 verbose stack at maybeClose (internal/child_process.js:957:16) | |
| 13 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:246:5) | |
| 14 verbose pkgid [email protected] | |
| 15 verbose cwd /home/chibuzor/exercism/javascript/hello-world | |
| 16 verbose Linux 4.13.0-38-generic | |
| 17 verbose argv "/home/chibuzor/.nvm/versions/node/v10.1.0/bin/node" "/home/chibuzor/.nvm/versions/node/v10.1.0/bin/npm" "run" "test" | |
| 18 verbose node v10.1.0 | |
| 19 verbose npm v6.1.0 | |
| 20 error code ELIFECYCLE | |
| 21 error errno 1 | |
| 22 error [email protected] test: `jest --no-cache ./*` | |
| 22 error Exit status 1 | |
| 23 error Failed at the [email protected] test script. | |
| 23 error This is probably not a problem with npm. There is likely additional logging output above. | |
| 24 verbose exit [ 1, true ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Package.Json // Error log is on line 90 | |
| { | |
| "name": "exercism-javascript", | |
| "version": "0.0.0", | |
| "description": "Exercism exercises in Javascript.", | |
| "author": "Katrina Owen", | |
| "private": true, | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/exercism/javascript" | |
| }, | |
| "devDependencies": { | |
| "babel-jest": "^21.2.0", | |
| "babel-plugin-transform-builtin-extend": "^1.1.2", | |
| "babel-preset-env": "^1.4.0", | |
| "eslint": "^3.19.0", | |
| "eslint-config-airbnb": "^15.0.1", | |
| "eslint-plugin-import": "^2.2.0", | |
| "eslint-plugin-jsx-a11y": "^5.0.1", | |
| "eslint-plugin-react": "^7.0.1", | |
| "jest": "^21.2.1" | |
| }, | |
| "jest": { | |
| "modulePathIgnorePatterns": [ | |
| "package.json" | |
| ], | |
| "verbose": true, | |
| "testURL": "http://localhost/" | |
| }, | |
| "babel": { | |
| "presets": [ | |
| [ | |
| "env", | |
| { | |
| "targets": [ | |
| { | |
| "node": "current" | |
| } | |
| ] | |
| } | |
| ] | |
| ], | |
| "plugins": [ | |
| [ | |
| "babel-plugin-transform-builtin-extend", | |
| { | |
| "globals": [ | |
| "Error" | |
| ] | |
| } | |
| ], | |
| [ | |
| "transform-regenerator" | |
| ] | |
| ] | |
| }, | |
| "scripts": { | |
| "test": "jest --no-cache ./*", | |
| "watch": "jest --no-cache --watch ./*", | |
| "lint": "eslint .", | |
| "lint-test": "eslint . && jest --no-cache ./* " | |
| }, | |
| "eslintConfig": { | |
| "parserOptions": { | |
| "ecmaVersion": 6, | |
| "sourceType": "module" | |
| }, | |
| "env": { | |
| "es6": true, | |
| "node": true, | |
| "jest": true | |
| }, | |
| "extends": "airbnb", | |
| "rules": { | |
| "import/no-unresolved": "off", | |
| "import/extensions": "off" | |
| } | |
| }, | |
| "licenses": [ | |
| "MIT" | |
| ], | |
| "dependencies": {} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment