// Karma configuration // Generated on Mon Jan 29 2018 11:58:53 GMT+0700 (SE Asia Standard Time) // Super-useful! http://www.bradoncode.com/blog/2015/02/27/karma-tutorial/#handling-html-fixtures module.exports = { // base path that will be used to resolve all patterns (eg. files, exclude) // set to Keyman repo base. basePath: '../../../../..', // Safeguards against disconnecting after starting tests. browserNoActivityTimeout: 60000, client: { /* `client.args` here is passed to the test runner page as `__karma__.config.args`. * * Karma doc type spec says "array", so we use an array. It also gives us room to add alternate * configuration details later if we need to, though on a CI vs local basis only. * * Timeouts below are in milliseconds */ args: [{ type: "timeouts", // This base is designed for local machine testing. eventDelay: 60, // Designed for small delays to allow time for event handling to occur before proceeding. // Make sure this stays under 1/4 of 'standard', as multiple eventDelays may occur within a test. standard: 5000, scriptLoad: 8000, uiLoad: 30000, // Loads two scripts + includes internal setup/timeout time requirements. // At this time of writing this, UI script loading is one of the longest checks. mobileFactor: 1 // An extra timeout modifier to be applied when running on a mobile device. }] }, // frameworks to use // available frameworks: https://npmjs.org/browse/keyword/karma-adapter frameworks: ['mocha', 'chai'], // list of files / patterns to load in the browser files: [ {pattern: 'common/web/keyboard-processor/tests/dom/cases/*.js', type: "module"}, {pattern: 'common/web/**/*.mjs', watched: true, served: true, included: false}, {pattern: 'common/web/**/*.mjs.map', watched: true, served: true, included: false}, {pattern: 'common/test/resources/fixtures/**/*.html', watched: true}, // HTML structures useful for testing. {pattern: 'common/test/resources/**/*.*', watched: true, served: true, included: false}, // General testing resources. {pattern: 'node_modules/sinon/**/*.*', watched: false, served: true, included: false}, {pattern: 'node_modules/chai/**/*.*', watched: false, served: true, included: false} ], proxies: { "/resources/": "/base/common/test/resources/", "/node_modules/": "/base/node_modules/", "/@keymanapp/web-utils/": "/base/common/web/utils/", "/@keymanapp/keyboard-processor/": "/base/common/web/keyboard-processor/" }, // list of files / patterns to exclude exclude: [ ], // preprocess matching files before serving them to the browser // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { 'common/test/resources/fixtures/**/*.html' : ['html2js'], 'common/test/resources/json/**/*.json' : ['json_fixtures'] }, html2JsPreprocessor: { stripPrefix: 'common/test/resources/' }, // Settings to properly configure how JSON fixtures are automatically loaded by Karma. jsonFixturesPreprocessor: { stripPrefix: 'common/test/resources/json', variableName: '__json__' }, // web server port port: 9876, // enable / disable colors in the output (reporters and logs) colors: true, // enable / disable watching file and executing tests whenever any file changes autoWatch: true, // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits // if false, it generates the pages and acts as a persistent server. singleRun: true, }