mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-08 09:41:19 +00:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
import buildUrl from 'wherehows-web/utils/build-url';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | build url');
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
let result = buildUrl();
|
|
assert.ok(result);
|
|
});
|