decide.nolog.cz/tests/unit/controllers/poll/participation-test.js
2023-10-15 20:37:03 +02:00

12 lines
359 B
JavaScript

import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Controller | poll/participation', function (hooks) {
setupTest(hooks);
// Replace this with your real tests.
test('it exists', function (assert) {
let controller = this.owner.lookup('controller:poll/participation');
assert.ok(controller);
});
});