Skip to content

Commit

Permalink
Update some integration tests to run node version 6.5.0 in order to b…
Browse files Browse the repository at this point in the history
…e able to test a windows dist with a zip
  • Loading branch information
datallah committed Sep 9, 2016
1 parent 3a164f2 commit 62a3aba
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class NpmRule_integTest
apply plugin: 'com.moowork.node'
node {
version = "5.9.0"
npmVersion = "3.8.3"
version = "6.5.0"
npmVersion = "3.10.6"
download = true
}
''' )
Expand All @@ -60,8 +60,8 @@ class NpmRule_integTest
apply plugin: 'com.moowork.node'
node {
version = "5.9.0"
npmVersion = "3.8.3"
version = "6.5.0"
npmVersion = "3.10.6"
download = true
}
''' )
Expand All @@ -75,7 +75,7 @@ class NpmRule_integTest
then:
result.failure != null
result.standardError.contains( 'Could not run npm command - local npm not found but requested in gradle node' )
result.standardError.contains( '3.8.3' )
result.standardError.contains( '3.10.6' )
}

def 'succeeds to run npm module using npm_run_ when shrinkwrap contains local npm'()
Expand All @@ -85,8 +85,8 @@ class NpmRule_integTest
apply plugin: 'com.moowork.node'
node {
version = "5.9.0"
npmVersion = "3.8.3"
version = "6.5.0"
npmVersion = "3.10.6"
download = true
}
''' )
Expand Down

0 comments on commit 62a3aba

Please sign in to comment.