Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
no-chris committed Dec 21, 2023
1 parent b146ee0 commit d9437e6
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,6 @@ describe('mergeChordLineWithLyrics', () => {
expect(allLyricTokens.length).toBe(pairs.length);

pairs.forEach(([chord, lyric], i) => {
console.log('===', allChordTokens[i], '===');
console.log('===', stripTags(allChordTokens[i]), '===');
expect(stripTags(allChordTokens[i])).toEqual(chord);
expect(stripTags(allLyricTokens[i])).toEqual(lyric);
});
Expand Down

0 comments on commit d9437e6

Please sign in to comment.