Drop custom session
This commit is contained in:
parent
6f6faee122
commit
4c8cbd20c7
6 changed files with 30 additions and 37 deletions
10
tests/unit/utils/parse-base64-test.js
Normal file
10
tests/unit/utils/parse-base64-test.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
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);
|
||||
});
|
Reference in a new issue