You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
262 B

  1. import * as base64 from '../base64';
  2. describe('base64', () => {
  3. describe('decode', () => {
  4. it('returns a uint8 array', () => {
  5. const arr = base64.decode('dGVzdA==');
  6. expect(arr).toEqual(new Uint8Array([116, 101, 115, 116]));
  7. });
  8. });
  9. });