cms/app-client/tests/unit/helpers/annotation-content-test.js
author ymh <ymh.work@gmail.com>
Tue, 13 Dec 2016 19:41:40 +0100
changeset 470 c5cdf35cab7b
parent 460 686926d132ff
permissions -rw-r--r--
Correct Ndyuka-Trio Piddin lexvo id (correct m3.11 & m3.12)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
460
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
import { annotationContent } from 'app-client/helpers/annotation-content';
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
import { module, test } from 'qunit';
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
module('Unit | Helper | annotation content');
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
// Replace this with your real tests.
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
test('it works', function(assert) {
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
  let result = annotationContent([42]);
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
  assert.ok(result);
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
});
686926d132ff add events, comment, etc to transcripts
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12