gpii-windows
Version:
Components of the GPII personalization infrastructure for use on Microsoft's "Windows" ™
29 lines (23 loc) • 667 B
JavaScript
/**
* GPII PackageKit Device Reporter Tests
*
* Copyright 2016 Inclusive Design Research Centre, OCAD University
*
* Licensed under the New BSD license. You may not use this file except in
* compliance with this License.
*
* You may obtain a copy of the License at
* https://github.com/gpii/universal/LICENSE.txt
*/
;
var fluid = require("gpii-universal"),
kettle = fluid.require("%kettle");
kettle.loadTestingSupport();
var testIncludes = [
"./processesBridge_tests.js",
"./processReporterModuleTests.js"
];
var tests = [];
fluid.each(testIncludes, function (path) {
tests = tests.concat(fluid.require(path, require));
});