A suite to track Project Diva score statistics and ratings / D4DJ event data.

11 lines
266 B

var test = require('tape');
var tou8 = require('../');
test('string to uint8', function (t) {
t.plan(2);
var str = 'whatever';
var a = tou8(str);
t.equal(a.constructor.name, 'Uint8Array', 'constructor name');
t.equal(a.length, 8, 'length');
});