项目作者: projectorjs

项目描述 :
Run Karma with ease
高级语言: JavaScript
项目地址: git://github.com/projectorjs/projector-karma.git
创建时间: 2017-07-07T00:36:40Z
项目社区:https://github.com/projectorjs/projector-karma

开源协议:

下载


projector-karma

Run Karma with ease

Run

  1. import * as karma from "projector-karma";
  2. import * as glob from "glob";
  3. export async function lint() {
  4. const files = glob.sync("./tests/**/*.+(ts|tsx)", { absolute: true });
  5. karma.run({
  6. files: files,
  7. config: {
  8. // http://karma-runner.github.io/1.0/config/configuration-file.html
  9. }
  10. });
  11. }