From dd971d04b12c166928d7c9ac9a17e5f735f41f59 Mon Sep 17 00:00:00 2001 From: infojunkie Date: Mon, 2 Sep 2024 21:44:19 -0700 Subject: [PATCH] Better musicxml-examples test --- test/musicxml-examples.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/musicxml-examples.test.js b/test/musicxml-examples.test.js index fbf6cd9e..9f526c0b 100644 --- a/test/musicxml-examples.test.js +++ b/test/musicxml-examples.test.js @@ -9,6 +9,7 @@ describe('MusicXML examples scraper', () => { const execResult = await exec('node src/js/musicxml-examples.js --examples=accordion-high-element,accordion-low-element') const output = execResult.stdout; expect(output).toMatch(/accordion-high/) + expect(output).toMatch(/accordion-low/) expect(output).not.toMatch(/accidental-element/) }) })