mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-18 23:02:11 +00:00
9 lines
240 B
JavaScript
9 lines
240 B
JavaScript
![]() |
import { getJSON } from 'wherehows-web/utils/api/fetcher';
|
||
|
import { module, test } from 'qunit';
|
||
|
|
||
|
module('Unit | Utility | api/fetcher');
|
||
|
|
||
|
test('it has a function getJSON', function(assert) {
|
||
|
assert.ok(typeof getJSON === 'function');
|
||
|
});
|