Fix travis lint tests
authorChocobozzz <florian.bigard@gmail.com>
Wed, 26 Apr 2017 19:52:49 +0000 (21:52 +0200)
committerChocobozzz <florian.bigard@gmail.com>
Wed, 26 Apr 2017 19:52:49 +0000 (21:52 +0200)
client/src/app/app.component.ts
scripts/test.sh

index 14870bb5f8c2c876b50d011a8f98732792dd01a0..a6eb4cd2e7582ec2cab7a4578c8884155c77c09d 100644 (file)
@@ -60,14 +60,14 @@ export class AppComponent implements OnInit {
       md: 10,
       sm: 9,
       xs: 9
-    }
+    };
 
     // Take all width is the menu is not displayed
     if (this.isMenuDisplayed === false) {
       Object.keys(colSizes).forEach(col => colSizes[col] = 12);
     }
 
-    const classes = [ "main-col" ];
+    const classes = [ 'main-col' ];
     Object.keys(colSizes).forEach(col => classes.push(`col-${col}-${colSizes[col]}`));
 
     return classes;
index 93dbd82001fdefb396d115e15043311a07ef1bdd..b341fc0d07049121575c1c53dad8f76488053ea6 100755 (executable)
@@ -1,8 +1,8 @@
 #!/usr/bin/env sh
 
 cd client || exit -1
-npm test
+npm test || exit -1
 
 cd .. || exit -1
-standard
+standard || exit -1
 mocha server/tests