server/bo_client/tests/unit/helpers/add-one-test.js
author ymh <ymh.work@gmail.com>
Tue, 07 Jun 2016 01:11:44 +0200
changeset 172 660570f13537
parent 20 a9b98b16b053
permissions -rw-r--r--
Add error counter to importRDF command + retry on code 400 for sparql download

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