rwwagner90/ember-math-helpers

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

Summary

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

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