server/bo_client/tests/unit/helpers/add-one-test.js
author ymh <ymh.work@gmail.com>
Wed, 18 Jan 2017 11:33:56 +0100
changeset 489 18613f052d56
parent 20 a9b98b16b053
permissions -rw-r--r--
Documents must be sorted by title, correct bug #0025982

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);
});