test-app/tests/unit/helpers/tanh-test.js
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);
});
});