fastiterationmap
Version:
an ES6 typescript Map that can be iterate like an Array
33 lines (30 loc) • 922 B
JavaScript
module.exports = function(config) {
config.set({
frameworks: ["mocha", "karma-typescript"],
files: [
{ pattern: "src/**/*.ts" },
{ pattern: "test/**/*.ts" },
"node_modules/es6-shim/es6-shim.js"
],
preprocessors: {
"src/**/*.ts": ["karma-typescript", "coverage"],
"test/**/*.ts": ["karma-typescript"]
},
reporters: ["progress", "karma-typescript", "coverage"],
browsers: ["Chrome", "Firefox", "IE", "PhantomJS", "Safari"],
karmaTypescriptConfig: {
compilerOptions: {
module: "commonjs"
},
tsconfig: "./tsconfig.json",
},
coverageReporter: {
type : 'html',
dir : 'coverage/'
},
// usePolling: true,
singleRun: false,
concurrency: Infinity,
autoWatch: true,
});
};