rwwagner90/ember-math-helpers

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

Summary

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

module('Unit | Helper | imul', function () {
  test('imul works', function (assert) {
    const result = imul([0xfffffffe, 5]);
    assert.strictEqual(result, -10);
  });
});