You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
458 B
JavaScript
26 lines
458 B
JavaScript
/*global require, __dirname*/
|
|
/*jshint nomen: false*/
|
|
|
|
var testRunner = require("qunit");
|
|
|
|
testRunner.setup({
|
|
log: {
|
|
assertions: true,
|
|
errors: true,
|
|
tests: true,
|
|
summary: true,
|
|
globalSummary: true,
|
|
testing: true
|
|
}
|
|
});
|
|
|
|
testRunner.run([
|
|
{
|
|
code: {
|
|
path: __dirname + "/../src/slip.js",
|
|
namespace: "slip"
|
|
},
|
|
tests: __dirname + "/slip-tests.js"
|
|
}
|
|
]);
|