rwwagner90/ember-math-helpers

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

Summary

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

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