rwwagner90/ember-math-helpers

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

Summary

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

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