rwwagner90/ember-math-helpers

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

Summary

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

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