Commit ae81b7a66eaa07fc1863bad8f298137e77150f82

Authored by Eric Fernandez
1 parent 06852c32e4
Exists in master and in 1 other branch develop

nada

... ... @@ -61,7 +61,7 @@ gulp.task('uglify-spec', function() {
61 61 footer("});"),
62 62 gulp.dest(paths.dist)
63 63 ]);
64   -})
  64 +});
65 65  
66 66 gulp.task('clean', function() {
67 67 return gulp.src(['tmp', 'dist'], {read: false})
... ... @@ -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",
... ... @@ -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) {