server/bo_client/tests/unit/helpers/add-one-test.js
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 10 Jun 2016 23:42:11 +0200
changeset 186 36e5a67656e6
parent 20 a9b98b16b053
permissions -rw-r--r--
Basic thematiques styling

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