757afb4de9
* add no-jquery rule and move event listeners to ember-concurrency tasks * remove unnecessary onchange and handleKeyDown actions * add element.closest polyfill and convert linked-block to use native dom apis * update pretender, fetch, page-object, add optional-features, remove ember/jquery * turn off jquery inclusion * remove jQuery.isPlainObject usage * violatedDirective isn't always formatted the same * use fetch and the ember-fetch adapter mixin * move to fetch and lowercase headers for pretender * display non-ember-data errors * use new async fn test style and lowercase headers in auth service test * setContext is not necessary with the new style tests and ember-cli-page-object - it actually triggers jquery usage * update ember-fetch, ember-cli-pretender * wait for permissions check * lowercase header name in auth test * refactor transit tests to one test per key type * simplify pollCluster helper * stop flakey tests by prefering the native fetch * avoid uncaught TransitionAborted error by navigating directly to unseal * unset model on controller after unloading it because controllers are singletons * update yarn.lock
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render } from '@ember/test-helpers';
|
|
import { create } from 'ember-cli-page-object';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import radialProgress from 'vault/tests/pages/components/radial-progress';
|
|
|
|
const component = create(radialProgress);
|
|
|
|
module('Integration | Component | radial progress', function(hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test('it renders', async function(assert) {
|
|
// We have to manually round the circumference, strokeDash, and strokeDashOffset because
|
|
// ie11 truncates decimals differently than other browsers.
|
|
let circumference = ((19 / 2) * Math.PI * 2).toFixed(2);
|
|
await render(hbs`{{radial-progress progressDecimal=0.5}}`);
|
|
|
|
assert.equal(component.viewBox, '0 0 20 20');
|
|
assert.equal(component.height, '20');
|
|
assert.equal(component.width, '20');
|
|
assert.equal(component.strokeWidth, '1');
|
|
assert.equal(component.r, 19 / 2);
|
|
assert.equal(component.cx, 10);
|
|
assert.equal(component.cy, 10);
|
|
assert.equal(Number(component.strokeDash).toFixed(2), circumference);
|
|
assert.equal(Number(component.strokeDashOffset).toFixed(3), (circumference * 0.5).toFixed(3));
|
|
});
|
|
});
|