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-06-23 18:47:47 -08:00

10 lines
265 B
JavaScript

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