File: runner.js

package info (click to toggle)
libjs-emojify 1.1.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, trixie
  • size: 5,972 kB
  • sloc: makefile: 4
file content (14 lines) | stat: -rw-r--r-- 327 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* global JS:false */

var ROOT = JS.ENV.ROOT || '../..';
// JS.cache = false;

JS.load(
    ROOT + '/src/emojify.js',
    ROOT + '/tests/spec/string.js',
    ROOT + '/tests/spec/dom.js',
    ROOT + '/tests/spec/tag_type.js',
    ROOT + '/tests/spec/modes.js',
    // add files here as the project grows
    JS.Test.autorun
);