mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 17:36:00 +00:00
79 lines
2.9 KiB
JavaScript
79 lines
2.9 KiB
JavaScript
// Karma configuration
|
|
|
|
// 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)
|
|
basePath: './',
|
|
|
|
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. These provide configurable timeout settings
|
|
// accessible as in-browser variables to unit tests.
|
|
eventDelay: 50, // 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: 4000,
|
|
scriptLoad: 6000,
|
|
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', 'fixture'],
|
|
|
|
// list of files / patterns to load in the browser
|
|
files: [
|
|
// Include the generated worker code. Make sure it's linked before any of the test cases.
|
|
'../../build/index.js',
|
|
'helpers.js', // Provides utility helpers and objects for tests.
|
|
'cases/**/*.js', // Where the tests actually reside.
|
|
|
|
// We don't have anything in these locations... yet. But they'll be useful for test resources.
|
|
'json/**/*.json', // Where pre-loaded JSON resides.
|
|
{pattern: 'resources/**/*.*', watched: true, served: true, included: false}, // General testing resources.
|
|
{pattern: 'fixtures/**/*.html', watched: true} // HTML structures useful for testing.
|
|
],
|
|
|
|
// 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: {
|
|
'fixtures/**/*.html' : ['html2js'],
|
|
'json/**/*.json' : ['json_fixtures']
|
|
},
|
|
|
|
// Settings to properly configure how JSON fixtures are automatically loaded by Karma.
|
|
jsonFixturesPreprocessor: {
|
|
stripPrefix: 'json/',
|
|
variableName: '__json__'
|
|
},
|
|
|
|
proxies: {
|
|
"/resources/": "/base/resources/"
|
|
},
|
|
|
|
// 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,
|
|
}
|