UNPKG

495 BJavaScriptView Raw
1/* eslint strict:[2,"function"] */
2module.exports = function (config) {
3 "use strict";
4 config.set({
5 basePath: "",
6 frameworks: ["jasmine"],
7 files: [
8 "helpers/jasmineHelpers2.js",
9 "dist/jsverify.standalone.js",
10 "spec/*.js",
11 ],
12 exclude: [
13 ],
14 preprocessors: {
15 },
16 reporters: ["progress"],
17 port: 9876,
18 colors: true,
19 logLevel: config.LOG_INFO,
20 autoWatch: false,
21 browsers: ["Chrome", "Firefox"],
22 singleRun: true,
23 });
24};