rwwagner90/ember-math-helpers

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

Summary

Maintainability
A
0 mins
Test Coverage
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);
  });
});