mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-08 01:31:55 +00:00
11 lines
366 B
JavaScript
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);
|
||
|
});
|