forked from sillsdev/web-languageforge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
300 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
'use strict'; | ||
var getWebpackConfig = require('./webpack.config.js'); | ||
|
||
// Karma configuration | ||
module.exports = function (config) { | ||
if (config.applicationName == null) { | ||
config.applicationName = 'languageforge'; | ||
} | ||
var webpackConfig = getWebpackConfig({ applicationName: config.applicationName, isTest: true }); | ||
var main = webpackConfig.entry.main; | ||
delete webpackConfig.entry; | ||
|
||
config.set({ | ||
basePath: '.', | ||
frameworks: ['jasmine'], | ||
|
||
// list of files / patterns to load in the browser | ||
files: [main], | ||
|
||
// list of files to exclude | ||
exclude: [], | ||
|
||
// preprocess matching files before serving them to the browser | ||
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor | ||
preprocessors: { | ||
[main]: ['webpack', 'sourcemap'] | ||
}, | ||
|
||
webpack: webpackConfig, | ||
|
||
// test results reporter to use | ||
// possible values: dots || progress || growl | ||
reporters: ['progress'], | ||
|
||
// web server port | ||
port: 8080, | ||
|
||
// cli runner port | ||
runnerPort: 9100, | ||
|
||
colors: true, | ||
logLevel: config.LOG_WARN, | ||
browsers: ['ChromiumHeadless'], | ||
captureTimeout: 8000, | ||
singleRun: true, | ||
mime: { | ||
'text/x-typescript': ['ts','tsx'] | ||
} | ||
}); | ||
}; |
Oops, something went wrong.