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,7 +1,3 @@
function formatDate(date, format) { export default function formatDate(date, format) {
return window.moment(date).format(format); return window.moment(date).format(format);
} }
export {
formatDate
};

View file

@ -4,6 +4,6 @@ export default function parseBase64(token) {
tokenData = atob(token.split('.')[1]); tokenData = atob(token.split('.')[1]);
return JSON.parse(tokenData); return JSON.parse(tokenData);
} catch (e) { } catch (e) {
return tokenData; return token;
} }
} }

View file

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