cms/app-client/tests/unit/helpers/if-and-test.js
author ymh <ymh.work@gmail.com>
Tue, 20 Mar 2018 15:02:24 +0100
changeset 572 190ae1dee68d
parent 214 9bff007eb03c
permissions -rw-r--r--
New version, update js requirements + package files.

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

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

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