rwwagner90/ember-math-helpers

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

Summary

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

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