cms/app-client/tests/unit/helpers/if-or-test.js
author ymh <ymh.work@gmail.com>
Tue, 13 Dec 2016 23:30:54 +0100
changeset 473 1b8b29c0e95c
parent 217 989b9c36b849
permissions -rw-r--r--
Added tag 0.0.13 for changeset 8b1e24e0ef70

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

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

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