UNPKG

music21j-port

Version:

A toolkit for computer-aided musicology, Javascript version

10 lines (8 loc) 276 B
import * as QUnit from 'qunit'; import music21 from '../../src/loadModules'; export default function tests() { QUnit.test('music21.tie.Tie', assert => { const t = new music21.tie.Tie('start'); assert.equal(t.type, 'start', 'Tie type is start'); }); }