Commit ae81b7a66eaa07fc1863bad8f298137e77150f82
1 parent
06852c32e4
Exists in
master
nada
Showing
3 changed files
with
3 additions
and
3 deletions
 
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) { |