This provides an npm installable QUnit that fires off all tests when the app has finished loading.
From NPM:
npm install steal-qunit --save-dev
If you are using the npm no configuration is needed. Otherwise configure the paths
and meta
properties:
System.config({
paths: {
"steal-qunit/*": "path/to/steal-qunit/*.js",
"steal-qunit": "path/to/steal-qunit/steal-qunit.js",
"qunit/qunit/*": "path/to/qunit/qunit/*.js",
"qunit/qunit/qunit.css": "path/to/qunit/qunit/qunit.css"
},
meta: {
"qunit/qunit/qunit": {
"format": "global",
"exports": "QUnit",
"deps": [
"steal-qunit/add-dom"
]
}
}
});