本文整理汇总了TypeScript中gulp-karma.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
gulp.task('watch', () => {
gulp.src('non_existing_file.js').pipe(karma({
configFile: 'karma.conf.js',
action: 'watch'
}));
gulp.watch(paths.scripts_ts, ['tslint']);
});
示例2: function
gulp.task('test', ['compile-typescript'], () => {
// Be sure to return the stream
return gulp.src(testFiles)
.pipe(karma({
configFile: 'karma.conf.js',
action: 'run'
}))
.on('error', function(err) {
// Make sure failed tests cause gulp to exit non-zero
throw err;
});
});
示例3:
() => {
return gulp.src([
DEST_DIR + '/' + DEBUGGER_NAMESPACE + '/vendor.js',
DEST_DIR + '/' + DEBUGGER_NAMESPACE + '/scripts.js',
TEMP_DIR + '/' + DEBUGGER_NAMESPACE + '/**/*.spec.js'
])
.pipe(karma({
configFile: 'debugger-ci.conf.js',
action: 'run'
}))
.on('error', (err) => {
throw err;
});
});
示例4: testWithCodeCoverage
function testWithCodeCoverage(srcFiles: string[], instrumentedFile: string, coverageOutputFile: string) {
let preprocessors = {};
preprocessors[instrumentedFile] = ['sourcemap', 'coverage'];
return gulp
.src(srcFiles)
.pipe(karma({
configFile: 'unit.conf.js',
preprocessors: preprocessors,
basePath: '.',
coverageReporter: {
type: 'clover',
dir: CODE_COVERAGE_DIR,
basePath: '.',
subdir: '.',
file: coverageOutputFile
},
action: 'run'
}))
.on('error', function(err) {
throw err;
});
}