rwwagner90/ember-math-helpers

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

Summary

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

module('Unit | Helper | tan', function () {
  test('tan works', function (assert) {
    const result = tan([1]);
    assert.strictEqual(Number(result.toFixed(3)), 1.557);
  });
});