changeset 246 | 5b7ae96768be |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cms/app-client/tests/unit/helpers/if-operator-test.js Thu Jul 21 23:36:50 2016 +0200 @@ -0,0 +1,10 @@ +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); +});