39c0823f2a
Also added a new jasmine spec for this as well as jquery.tinysort to do the sorting.
19 lines
455 B
JavaScript
19 lines
455 B
JavaScript
require(["jquery",
|
|
"spec/StorageSpec",
|
|
"spec/RosterSpec"], function($) {
|
|
|
|
$(function($) {
|
|
var jasmineEnv = jasmine.getEnv();
|
|
jasmineEnv.updateInterval = 1000;
|
|
|
|
var htmlReporter = new jasmine.HtmlReporter();
|
|
|
|
jasmineEnv.addReporter(htmlReporter);
|
|
|
|
jasmineEnv.specFilter = function(spec) {
|
|
return htmlReporter.specFilter(spec);
|
|
};
|
|
jasmineEnv.execute();
|
|
});
|
|
});
|