2019-04-23 17:37:42 +02:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
|
2023-10-15 20:37:03 +02:00
|
|
|
module('Unit | Controller | poll-error', function (hooks) {
|
2019-04-23 17:37:42 +02:00
|
|
|
setupTest(hooks);
|
|
|
|
|
|
|
|
// Replace this with your real tests.
|
2023-10-15 20:37:03 +02:00
|
|
|
test('it exists', function (assert) {
|
2019-04-23 17:37:42 +02:00
|
|
|
let controller = this.owner.lookup('controller:poll-error');
|
|
|
|
assert.ok(controller);
|
|
|
|
});
|
|
|
|
});
|