server/bo_client/tests/unit/helpers/add-one-test.js
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 10 Jun 2016 18:37:26 +0200
changeset 185 191883bd16a6
parent 20 a9b98b16b053
permissions -rw-r--r--
Set ID as discourse querystring value

import { addOne } from '../../../helpers/add-one';
import { module, test } from 'qunit';

module('Unit | Helper | add one');

// Replace this with your real tests.
test('it works', function(assert) {
  let result = addOne(42);
  assert.equal(result, 43);
});