13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
const expect = require('expect');
|
|
const btoa = require('./btoa.js');
|
|
|
|
|
|
test('btoa is a Function', () => {
|
|
expect(btoa).toBeInstanceOf(Function);
|
|
});
|
|
test('btoa("foobar") equals "Zm9vYmFy"', () => {
|
|
expect(btoa('foobar'), 'Zm9vYmFy').toBe()
|
|
});
|
|
|
|
|