More test cleanup

This commit is contained in:
Matthew Ryan Dillon 2015-10-30 09:22:19 -07:00
parent d80e95c1eb
commit 6197066352
3 changed files with 4 additions and 8 deletions

View file

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