瀏覽代碼

Fixed travis config

Andrea Condoluci 9 年之前
父節點
當前提交
55158aea83
共有 2 個文件被更改,包括 2 次插入3 次删除
  1. 2 1
      package.json
  2. 0 2
      test/MusicalScore/Calculation/MeasureSizeCalculator.ts

+ 2 - 1
package.json

@@ -8,7 +8,8 @@
     "test": "test"
   },
   "scripts": {
-    "test": "echo \"Error: no test specified\" && exit 1"
+    "start": "grunt all",
+    "test": "grunt test"
   },
   "repository": {
     "type": "git",

+ 0 - 2
test/MusicalScore/Calculation/MeasureSizeCalculator.ts

@@ -8,9 +8,7 @@ describe("Measure Size Calculator Tests", () => {
   // Initialization
   let stave: Vex.Flow.Stave = new Vex.Flow.Stave(0, 0, 0);
   let voices: Vex.Flow.Voice[];
-  //let formatter: Vex.Flow.Formatter = new Vex.Flow.Formatter();
   let formatter: Vex.Flow.Formatter;
-  // Create a voice with a note
   let voice: Vex.Flow.Voice;
   let note: Vex.Flow.StaveNote;
   let calc: MeasureSizeCalculator;