UNPKG

mscx2ly

Version:

Tool to render lilypond code from a MuseScore save file

25 lines (23 loc) 919 B
import test from 'ava'; // for the converter we need to run the conversion, and make sure the output is as expected // The test musescore files are in the test folder, and the expected output is there as well. // ie tests/articulations.mscx should convert to tests/articulations.ly // moreover, we need to test the different outputmodes as well as the different options test.todo('score file only'); test.todo('parts file only'); test.todo('music file only'); test.todo('separate music'); test.todo('separate score'); test.todo('separate parts'); test.todo('omit music'); test.todo('omit score'); test.todo('omit parts'); test.todo('omit articulations'); test.todo('omit dynamics'); test.todo('omit lyrics'); test.todo('omit slurs'); test.todo('check clefs'); test.todo('check time signatures'); test.todo('check key signatures'); test.todo('check articulations'); test.todo('check dynamics');