Commit cb5d693d authored by Hunter Loftis's avatar Hunter Loftis

updated test suite for latest stable at 0.12.0

parent f7b2c7a9
...@@ -40,7 +40,7 @@ testNoVersion() { ...@@ -40,7 +40,7 @@ testNoVersion() {
assertCaptured "Node engine: unspecified" assertCaptured "Node engine: unspecified"
assertCaptured "WARNING: Node version not specified in package.json" assertCaptured "WARNING: Node version not specified in package.json"
assertCaptured "Resolving node version (latest stable) via semver.io" assertCaptured "Resolving node version (latest stable) via semver.io"
assertCaptured "Downloading and installing node 0.10" assertCaptured "Downloading and installing node 0.12"
assertNotCaptured "We're sorry this build is failing" assertNotCaptured "We're sorry this build is failing"
assertCapturedSuccess assertCapturedSuccess
} }
...@@ -126,7 +126,7 @@ testDangerousRangeStar() { ...@@ -126,7 +126,7 @@ testDangerousRangeStar() {
assertCaptured "WARNING: Avoid semver ranges like '*'" assertCaptured "WARNING: Avoid semver ranges like '*'"
assertCaptured "Node engine: *" assertCaptured "Node engine: *"
assertCaptured "Resolving node version * via semver.io" assertCaptured "Resolving node version * via semver.io"
assertCaptured "Downloading and installing node 0.10" assertCaptured "Downloading and installing node 0.12"
assertCapturedSuccess assertCapturedSuccess
} }
...@@ -134,14 +134,14 @@ testDangerousRangeGreaterThan() { ...@@ -134,14 +134,14 @@ testDangerousRangeGreaterThan() {
compile "dangerous-range-greater-than" compile "dangerous-range-greater-than"
assertCaptured "WARNING: Avoid semver ranges starting with '>'" assertCaptured "WARNING: Avoid semver ranges starting with '>'"
assertCaptured "Resolving node version >0.4 via semver.io" assertCaptured "Resolving node version >0.4 via semver.io"
assertCaptured "Downloading and installing node 0.10" assertCaptured "Downloading and installing node 0.12"
assertCapturedSuccess assertCapturedSuccess
} }
testRangeWithSpace() { testRangeWithSpace() {
compile "range-with-space" compile "range-with-space"
assertCaptured "Resolving node version >= 0.8.x via semver.io" assertCaptured "Resolving node version >= 0.8.x via semver.io"
assertCaptured "Downloading and installing node 0.10" assertCaptured "Downloading and installing node 0.12"
assertCapturedSuccess assertCapturedSuccess
} }
......
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