rwwagner90/ember-math-helpers

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

Summary

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

module('Unit | Helper | tanh', function () {
  test('tanh works', function (assert) {
    const result = tanh([1]);
    assert.strictEqual(Number(result.toFixed(3)), 0.762);
  });
});