Commit 536ae3dd authored by Hunter Loftis's avatar Hunter Loftis

Merge pull request #141 from heroku/yoga-fix-info-typo

fix typo
parents c4280451 0a4e4c64
......@@ -131,6 +131,7 @@ The next features in the pipeline include:
- Specifying io.js as your node engine
- Providing proxy settings for your locked-down enterprise environment
- Dynamically adjusting to different container sizes (especially regarding memory)
## Feedback
......
......@@ -73,7 +73,7 @@ test -d $cache_dir/node/node_modules && modules_cached=true || modules_cached=fa
echo ""
info "Node engine: ${node_engine:-unspecified}"
info "Npm engine: ${npm_engine:infolt}"
info "Npm engine: ${npm_engine:-default}"
info "Start mechanism: ${start_method:-none}"
info "node_modules source: ${modules_source:-none}"
info "node_modules cached: $modules_cached"
......
......@@ -42,6 +42,16 @@ testUnstableVersion() {
assertCapturedSuccess
}
testInfoEmpty() {
compile "info-empty"
assertCaptured "Node engine: unspecified"
assertCaptured "Npm engine: default"
assertCaptured "Start mechanism: none"
assertCaptured "node_modules source: package.json"
assertCaptured "node_modules cached: false"
assertCapturedSuccess
}
testDangerousRangeStar() {
compile "dangerous-range-star"
assertCaptured "PRO TIP: Avoid semver ranges like '*'"
......
A fake README, to keep npm from polluting stderr.
\ No newline at end of file
{
"name": "node-buildpack-test-app",
"version": "0.0.1",
"description": "node buildpack integration test app",
"repository" : {
"type" : "git",
"url" : "http://github.com/example/example.git"
},
"dependencies": {
"hashish": "*"
},
"engines": {
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment