rwwagner90/ember-math-helpers

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

Summary

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

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