cms/app-client/tests/unit/helpers/if-operator-test.js
author Chloe Laisne <chloe.laisne@gmail.com>
Sun, 02 Oct 2016 20:23:58 +0200
changeset 315 e3217b6adea3
parent 246 5b7ae96768be
permissions -rw-r--r--
Display footer toolbar only when transcript or notice is open

import { ifOperator } from 'app-client/helpers/if-operator';
import { module, test } from 'qunit';

module('Unit | Helper | if operator');

// Replace this with your real tests.
test('it works', function(assert) {
  let result = ifOperator([42]);
  assert.ok(result);
});