More test cleanup
This commit is contained in:
parent
d80e95c1eb
commit
6197066352
3 changed files with 4 additions and 8 deletions
|
@ -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
|
|
||||||
};
|
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue