Commit 3a4c6eb01d03615b9bbe19ef99921497eee1eae1
Exists in
master
and in
1 other branch
Merge branch 'master' into 'master'
Master(efernandez) See merge request !33
Showing
3 changed files
Show diff stats
gulpfile.js
package.json
... | ... | @@ -4,7 +4,7 @@ |
4 | 4 | "description": "Abm de vehiculo", |
5 | 5 | "main": "index.html", |
6 | 6 | "scripts": { |
7 | - "test": "echo \"Error: no test specified\" && exit 1", | |
7 | + "test": "test.html", | |
8 | 8 | "compile": "gulp uglify", |
9 | 9 | "gulp-pre-commit": "gulp pre-commit", |
10 | 10 | "postinstall": "npm run compile && gulp clean-post-install", |
spec/serviceSpec.js
... | ... | @@ -96,7 +96,7 @@ describe('Servicios de abm vehículo', function() { |
96 | 96 | var returnFake = { data: 'test' }; |
97 | 97 | var paramFake = 1; |
98 | 98 | var result; |
99 | - httpBackend.expectDELETE('localhost/vehiculo/' +paramFake).respond(returnFake); | |
99 | + httpBackend.expectDELETE('localhost/vehiculo/' + paramFake).respond(returnFake); | |
100 | 100 | |
101 | 101 | //act |
102 | 102 | servicio.deleteVehiculo(paramFake).then(function(data) { |