11 lines
289 B
JavaScript
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);
|
||
|
});
|
||
|
});
|