consul/ui-v2/tests/unit/controllers/settings-test.js
John Cowen ee393e34fb
ui: Adds tick whilst editing the link template in the Settings area (#5820)
1. Amends our `base` animation placeholder to always reset
transition-duration. This has no effect on other components that are
already using this animation.
2. Adds a confirming class whenever a key is pressed, to show the green
tick. Uses CSS via `transition-delay` for debouncing.
2019-05-17 12:33:12 +01:00

13 lines
386 B
JavaScript

import { moduleFor, test } from 'ember-qunit';
moduleFor('controller:settings', 'Unit | Controller | settings', {
// Specify the other units that are required for this test.
needs: ['service:settings', 'service:dom', 'service:timeout'],
});
// Replace this with your real tests.
test('it exists', function(assert) {
let controller = this.subject();
assert.ok(controller);
});