Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
infojunkie committed Oct 12, 2024
1 parent e515ce0 commit d73700b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "musicxml-midi",
"version": "2.8.4",
"version": "2.8.5",
"description": "MusicXML to MIDI converter",
"type": "module",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion test/musicxml-grooves.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ describe('MusicXML grooves converter', () => {
test('should run successfully', async () => {
const execResult = await exec('node src/js/musicxml-grooves.js --validate --grooves=JazzBasieA,JazzWaltzMainA')
const output = execResult.stderr;
expect(output).toEqual(`Generating JazzWaltzMainA...\nGenerating JazzBasieA...\n`)
expect(output).toMatch(/Generating Jazz(BasieA|WaltzMainA)\.\.\.[\n]Generating Jazz(WaltzMainA|BasieA)\.\.\.[\n]/g)
})
})

0 comments on commit d73700b

Please sign in to comment.