Converted app/javascript/mastodon/utils/ folder to TypeScript (#27895)
This commit is contained in:
parent
cdc7894243
commit
1142f4c79e
14 changed files with 84 additions and 75 deletions
10
app/javascript/mastodon/utils/__tests__/base64-test.ts
Normal file
10
app/javascript/mastodon/utils/__tests__/base64-test.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
import * as base64 from '../base64';
|
||||
|
||||
describe('base64', () => {
|
||||
describe('decode', () => {
|
||||
it('returns a uint8 array', () => {
|
||||
const arr = base64.decode('dGVzdA==');
|
||||
expect(arr).toEqual(new Uint8Array([116, 101, 115, 116]));
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue