rwwagner90/ember-math-helpers

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

Summary

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

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