本文整理汇总了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']);
});
开发者ID:larrifax,项目名称:AngularTypescriptSkeleton,代码行数:8,代码来源:gulpfile.ts
示例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;
});
});
开发者ID:noamkfir,项目名称:hence,代码行数:12,代码来源:gulpfile.ts
示例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;
});
});
开发者ID:lindsaymacvean,项目名称:seventag,代码行数:16,代码来源:Gulpfile.ts
示例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;
});
}
开发者ID:lindsaymacvean,项目名称:seventag,代码行数:23,代码来源:Gulpfile.ts
注:本文中的gulp-karma.default函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论