Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken tests; bump shUnit2 to 2.1.8 #934

Merged
merged 10 commits into from
Aug 11, 2021
Prev Previous commit
Next Next commit
Update node, bower, jQuery for ancient, failing fixture
  • Loading branch information
joshwlewis committed Aug 10, 2021
commit 96b628a32d7638e78dc9728e2b61a14c8545372f
2 changes: 1 addition & 1 deletion test/fixtures/cache-directories/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-buildpack-test-app",
"dependencies": {
"jquery": "^1.11.1"
"jquery": "^3.6.0"
}
}
15 changes: 9 additions & 6 deletions test/fixtures/cache-directories/package.json
Original file line number Diff line number Diff line change
@@ -2,18 +2,21 @@
"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"
"repository": {
"type": "git",
"url": "http://github.com/example/example.git"
},
"engines": {
"node": "8.x"
"node": "12.x"
},
"dependencies": {
"bower": "1.3.12"
"bower": "1.8.12"
},
"scripts": {
"postinstall": "bower install --allow-root"
},
"cache_directories": ["bower_components", "node_modules"]
"cache_directories": [
"bower_components",
"node_modules"
]
}