server/bo_client/tests/unit/helpers/add-one-test.js
author ymh <ymh.work@gmail.com>
Sun, 05 Jun 2016 00:28:45 +0200
changeset 169 8fddc113095e
parent 20 a9b98b16b053
permissions -rw-r--r--
Correct proble on geo info merging + add geo resource

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