rwwagner90/ember-math-helpers

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

Summary

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

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