rwwagner90/ember-math-helpers

View on GitHub
test-app/tests/unit/helpers/fround-test.js

Summary

Maintainability
A
0 mins
Test Coverage
import { fround } from 'ember-math-helpers/helpers/fround';
import { module, test } from 'qunit';

module('Unit | Helper | fround', function () {
  test('fround works', function (assert) {
    const result = fround([1.337]);
    assert.strictEqual(result, 1.3370000123977661);
  });
});