mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
14 lines
500 B
JavaScript
14 lines
500 B
JavaScript
import QUnit from 'qunit';
|
|
import decodeB64ToUint8Array from '../src/decode-b64-to-uint8-array.js';
|
|
|
|
QUnit.module('decodeB64ToUint8Array');
|
|
|
|
// slightly modified version of m3u8 test
|
|
// 'parses Widevine #EXT-X-KEY attributes and attaches to manifest'
|
|
QUnit.test('can decode', function(assert) {
|
|
const b64 = 'AAAAPnBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAAB4iFnNoYWthX2NlYzJmNjRhYTc4OTBhMTFI49yVmwY';
|
|
const result = decodeB64ToUint8Array(b64);
|
|
|
|
assert.deepEqual(result.byteLength, 62, 'decoded');
|
|
});
|