17cfb4ab6d
Adds meaningful error pages if - poll does not exist - encryption key is wrong.
12 lines
341 B
JavaScript
12 lines
341 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Unit | Controller | poll-error', function(hooks) {
|
|
setupTest(hooks);
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let controller = this.owner.lookup('controller:poll-error');
|
|
assert.ok(controller);
|
|
});
|
|
});
|