tern-qunit
v0.1.0
Published
A Tern plugin adding support for QUnit.
Downloads
4
Readme
tern-qunit
tern-qunit is a plugin which adds support for qunit.js to the JavaSript code intelligence system Tern.
tern-qunit provides :
- the tern qunit plugin qunit.js
Demo
You can play with online demo which uses CodeMirror ((inside Web Browser).
You can see demos in this git project with CodeMirror in demos/qunit.html :
Here a screenshot with completion with CodeMirror QUnit completion :

Here a screenshot with completion with Eclipse IDE QUnit completion :

If you wish to use Eclipse as IDE, see Eclipse support for QUnit.
Installation
tern-qunit works with the NodeJS [Tern Server][tern-server], and within a browser.
The easiest way to install tern-qunit is to use a recent version of [npm][npm]. In the directory where you installed the [tern package][tern-npm], simply run
$ npm install tern-qunitConfiguration
qunit support QUnit.
With Node.js
In order for Tern to load the tern-qunit plugin once it is installed, you must
include qunit in the plugins section of your [Tern configuration
file][tern-config].
Here is a minimal example .tern-project configuration file:
{
"libs":["ecma5"],
"plugins": {
"qunit": {}
}
}With WebBrowser (CodeMirror)
See demos/qunit.html
Structure
The basic structure of the project is given in the following way:
qunit.jsthe tern plugin.demos/demos with QUnit tern plugin which use CodeMirror.testtest of the tern plugin.

