Skip to content

Commit

Permalink
test cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed Nov 26, 2023
1 parent ab7a54e commit 221882f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -1039,11 +1039,11 @@ describe('UMP messages', function() {
assert.equal(JZZ.UMP.umpNoteOff(1, 2, 61).toString(), s);
assert.equal(JZZ.UMP.umpNoteOff(1, 2, 'C#5', 0).toString(), s);
});
it.only('umpAftertouch', function() {
it('umpAftertouch', function() {
assert.equal(JZZ.UMP.umpAftertouch(1, 2, 3, 0xf0f0f0f0).toString(), '41a20300 f0f0f0f0 -- Poly Pressure');
assert.throws(function() { JZZ.UMP.umpAftertouch(1, 2, 3, -1); });
});
it.only('umpPressure', function() {
it('umpPressure', function() {
assert.equal(JZZ.UMP.umpPressure(1, 2, 0xf0f0f0f0).toString(), '41d20000 f0f0f0f0 -- Channel Pressure');
});
it('umpProgram', function() {
Expand Down

0 comments on commit 221882f

Please sign in to comment.