test-app/tests/unit/helpers/acosh-test.js
import { acosh } from 'ember-math-helpers/helpers/acosh';
import { module, test } from 'qunit';
module('Unit | Helper | acosh', function () {
test('acosh works', function (assert) {
const result = acosh([1]);
assert.strictEqual(result, 0);
});
});