open-consul/ui/packages/consul-ui/tests/unit/utils/http/xhr-test.js

11 lines
275 B
JavaScript

import httpXhr from 'consul-ui/utils/http/xhr';
import { module, test } from 'qunit';
module('Unit | Utility | http/xhr', function() {
// Replace this with your real tests.
test('it works', function(assert) {
let result = httpXhr();
assert.ok(result);
});
});