open-consul/ui-v2/tests/unit/utils/http/error-test.js

11 lines
289 B
JavaScript

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