Files
30-seconds-of-code/test/btoa.test.js
2018-10-19 20:18:00 +03:00

10 lines
248 B
JavaScript

const expect = require('expect');
const {btoa} = require('./_30s.js');
test('btoa is a Function', () => {
expect(btoa).toBeInstanceOf(Function);
});
test('btoa("foobar") equals "Zm9vYmFy"', () => {
expect(btoa('foobar')).toBe('Zm9vYmFy');
});