datahub/wherehows-web/tests/unit/utils/encode-decode-uri-component-with-space-test.js
2017-07-10 09:54:18 -07:00

11 lines
366 B
JavaScript

import encodeDecodeURIComponentWithSpace from 'wherehows-web/utils/encode-decode-uri-component-with-space';
import { module, test } from 'qunit';
module('Unit | Utility | encode decode uri component with space');
// Replace this with your real tests.
test('it works', function(assert) {
let result = encodeDecodeURIComponentWithSpace();
assert.ok(result);
});