@@ -53,10 +53,10 @@ describe("processABCNotes - Basic Note Processing", () => {
5353
5454 beforeEach ( ( ) => {
5555 logo = {
56- notationNotes : { "0" : "" } ,
56+ notationNotes : { 0 : "" } ,
5757 notation : {
5858 notationStaging : {
59- "0" : [
59+ 0 : [
6060 [ [ "G♯4" ] , 4 , 0 , null , null , - 1 , false ] ,
6161 [ [ "F4" ] , 4 , 0 , null , null , - 1 , false ] ,
6262 [ [ "G♯4" ] , 2 , 0 , null , null , - 1 , false ]
@@ -88,7 +88,7 @@ describe("processABCNotes - Advanced Note Handling", () => {
8888 let logo ;
8989
9090 beforeEach ( ( ) => {
91- logo = { notationNotes : { "0" : "" } , notation : { notationStaging : { "0" : [ ] } } } ;
91+ logo = { notationNotes : { 0 : "" } , notation : { notationStaging : { 0 : [ ] } } } ;
9292 } ) ;
9393
9494 it ( "should handle frequency (number) inputs" , ( ) => {
@@ -125,7 +125,7 @@ describe("processABCNotes - Advanced Note Handling", () => {
125125describe ( "processABCNotes - Control Strings" , ( ) => {
126126 let logo ;
127127 beforeEach ( ( ) => {
128- logo = { notationNotes : { "0" : "" } , notation : { notationStaging : { "0" : [ ] } } } ;
128+ logo = { notationNotes : { 0 : "" } , notation : { notationStaging : { 0 : [ ] } } } ;
129129 } ) ;
130130
131131 it ( "should handle all string commands correctly" , ( ) => {
@@ -182,7 +182,7 @@ describe("processABCNotes - Control Strings", () => {
182182describe ( "processABCNotes - Chords" , ( ) => {
183183 let logo ;
184184 beforeEach ( ( ) => {
185- logo = { notationNotes : { "0" : "" } , notation : { notationStaging : { "0" : [ ] } } } ;
185+ logo = { notationNotes : { 0 : "" } , notation : { notationStaging : { 0 : [ ] } } } ;
186186 } ) ;
187187
188188 it ( "should handle chords correctly (Start, Middle, End)" , ( ) => {
@@ -218,7 +218,7 @@ describe("processABCNotes - Chords", () => {
218218describe ( "processABCNotes - Tuplet Handling" , ( ) => {
219219 let logo ;
220220 beforeEach ( ( ) => {
221- logo = { notationNotes : { "0" : "" } , notation : { notationStaging : { "0" : [ ] } } } ;
221+ logo = { notationNotes : { 0 : "" } , notation : { notationStaging : { 0 : [ ] } } } ;
222222 } ) ;
223223
224224 it ( "should process standard tuplets correctly" , ( ) => {
@@ -270,7 +270,7 @@ describe("processABCNotes - Edge Cases for 100% Coverage", () => {
270270 let logo ;
271271
272272 beforeEach ( ( ) => {
273- logo = { notationNotes : { "0" : "" } , notation : { notationStaging : { "0" : [ ] } } } ;
273+ logo = { notationNotes : { 0 : "" } , notation : { notationStaging : { 0 : [ ] } } } ;
274274 } ) ;
275275
276276 it ( "should handle array of notes in NOTATIONNOTE field" , ( ) => {
@@ -321,10 +321,10 @@ describe("saveAbcOutput", () => {
321321 activity = {
322322 logo : {
323323 notationOutput : "" ,
324- notationNotes : { "0" : "" } ,
324+ notationNotes : { 0 : "" } ,
325325 notation : {
326326 notationStaging : {
327- "0" : [ [ [ "G♯4" ] , 4 , 0 , null , null , - 1 , false ] ]
327+ 0 : [ [ [ "G♯4" ] , 4 , 0 , null , null , - 1 , false ] ]
328328 }
329329 }
330330 } ,
@@ -353,10 +353,10 @@ describe("saveAbcOutput", () => {
353353describe ( "processABCNotes - Tuplet Handling" , ( ) => {
354354 it ( "should process tuplets correctly" , ( ) => {
355355 const logo = {
356- notationNotes : { "0" : "" } ,
356+ notationNotes : { 0 : "" } ,
357357 notation : {
358358 notationStaging : {
359- "0" : [
359+ 0 : [
360360 [ [ "G♯4" ] , 4 , 0 , 3 , 2 , - 1 , false ] ,
361361 [ [ "F4" ] , 4 , 0 , 3 , 2 , - 1 , false ] ,
362362 [ [ "G♯4" ] , 4 , 0 , 3 , 2 , - 1 , false ]
0 commit comments