Skip to content

Commit 07c3079

Browse files
no-chrisclaude
andcommitted
Fix lint errors: remove unused imports and avoid no-regex-spaces
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2cfc3a3 commit 07c3079

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

packages/chord-mark/tests/integration-public-api/parseSong-chords.spec.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ import {
44
singleChord,
55
multipleChords,
66
multipleBars,
7-
barRepeat,
8-
chordLineRepeat,
9-
noChord,
10-
subBeatGroup,
11-
multipleSubBeatGroups,
127
positionedChords,
138
} from './fixtures/songs';
149

packages/chord-mark/tests/integration-public-api/renderSong-sections.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ describe('renderSong - sections', () => {
144144
render(input, { autoRepeatChords: true, alignBars: false })
145145
);
146146
expect(text).toContain('|C |G |');
147-
expect(text.match(/\|C \|G \|/g).length).toBe(2);
147+
expect(text.match(/\|C {2}\|G {2}\|/g).length).toBe(2);
148148
});
149149

150150
test('does not repeat chords when false', () => {

0 commit comments

Comments
 (0)