mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 14:55:02 +00:00
ee393e34fb
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.
13 lines
386 B
JavaScript
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);
|
|
});
|