Skip to content

projectorjs/projector-karma

Repository files navigation

projector-karma

Run Karma with ease

Run

import * as karma from "projector-karma";
import * as glob from "glob";

export async function lint() {
  const files = glob.sync("./tests/**/*.+(ts|tsx)", { absolute: true });

  karma.run({
    files: files,
    config: {
      // http://karma-runner.github.io/1.0/config/configuration-file.html
    }
  });
}