22 lines
492 B
JavaScript
22 lines
492 B
JavaScript
import { module } from 'qunit';
|
|
import test from 'ember-sinon-qunit/test-support/test';
|
|
import btoa from 'consul-ui/utils/btoa';
|
|
|
|
module('Unit | Utils | btoa', function() {
|
|
test('it encodes strings properly', function(assert) {
|
|
[
|
|
{
|
|
test: '',
|
|
expected: '',
|
|
},
|
|
{
|
|
test: '1234',
|
|
expected: 'MTIzNA==',
|
|
},
|
|
].forEach(function(item) {
|
|
const actual = btoa(item.test);
|
|
assert.equal(actual, item.expected);
|
|
});
|
|
});
|
|
});
|