rwwagner90/ember-math-helpers

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

Summary

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

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