This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/tests/unit/utils/parse-base64-test.js
2015-10-30 09:22:19 -07:00

10 lines
252 B
JavaScript

import parseBase64 from '../../../utils/parse-base64';
import { module, test } from 'qunit';
module('parseBase64');
// Replace this with your real tests.
test('it works', function(assert) {
var result = parseBase64('123');
assert.ok(result);
});