npm run format:write

This commit is contained in:
2024-10-13 16:43:32 -05:00
parent 278d09bb6f
commit 81e0a542c5
3 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ describe('OSC Message Decoding', () => {
tests.forEach((messageTest) => {
it(messageTest.description, () => {
const [decoded, remainingBytes] = osc.messageFromBuffer(messageTest.bytes);
equal(remainingBytes.length, 0)
equal(remainingBytes.length, 0);
deepEqual(decoded, messageTest.expected);
});
});