The plugin seamlessly runs your unit tests written in Typescript and creates coverage reports, eliminating the need for additional build steps or scripts.
It compiles your Typescript code incrementally on the fly, with full type checking, and imported modules will be automatically loaded from node_modules and bundled along with nodejs globals and builtin core modules.
Frameworks such as AngularJS, Angular2, React and Sinon (among others) are supported out of the box.
Example screenshot
First, install the plugin:
npm install karma-typescript --save-dev
Then put this in your Karma config:
frameworks: ["jasmine", "karma-typescript"],
files: [
{ pattern: "src/**/*.ts" }
],
preprocessors: {
"**/*.ts": ["karma-typescript"]
},
reporters: ["progress", "karma-typescript"],
browsers: ["Chrome"]
Now run Karma and two things will happen:
- Your tests written in Typescript will be compiled and executed on the fly.
- You'll have html test coverage, remapped with
remap-istanbul
in the folder./coverage
in the root of your project.
Runnable example for Typescript 1.8.10 - 2.0.0^
Runnable example for Typescript 1.6.2 - 1.7.5
Runnable example for AngularJS
Runnable example using Mocha
frameworks: ["jasmine", "karma-typescript"],
files: [
{ pattern: "node_modules/reflect-metadata/Reflect.js" },
{ pattern: "node_modules/zone.js/dist/zone.js" },
{ pattern: "node_modules/zone.js/dist/long-stack-trace-zone.js" },
{ pattern: "node_modules/zone.js/dist/proxy.js" },
{ pattern: "node_modules/zone.js/dist/sync-test.js" },
{ pattern: "node_modules/zone.js/dist/jasmine-patch.js" },
{ pattern: "node_modules/zone.js/dist/async-test.js" },
{ pattern: "node_modules/zone.js/dist/fake-async-test.js" },
{ pattern: "src/**/*.ts" }
],
preprocessors: {
"src/**/*.ts": ["karma-typescript"]
},
reporters: ["progress", "karma-typescript"],
browsers: ["Chrome"]
Example of the resulting coverage:
frameworks: ["jasmine", "karma-typescript"],
files: [
{ pattern: "src/**/*.tsx" }
],
preprocessors: {
"src/**/*.tsx": ["karma-typescript"]
},
reporters: ["progress", "karma-typescript"],
browsers: ["Chrome"]
Example of the resulting coverage:
All runnable examples and integration tests for Typescript 1.8.10
All runnable examples and integration tests for Typescript 2.0.0^
Under the hood, karma-typescript
chains several other npm modules in the following order:
Module | Step | Note |
---|---|---|
typescript |
Compile incrementally, in-memory with inline sourcemaps | Plain Typescript, Angular2 and React are included in the default compiler settings |
browserify |
Add module loading for browsers | Uses parts of the browserify tool chain |
karma-coverage |
Instrument the code with Istanbul | Instrumented code will not be compacted and *.spec.ts and *.test.ts are excluded |
remap-istanbul |
Create remapped coverage | An html report will be created in the folder ./coverage |
The plugin has default settings for the compiler, instrumenting files and creating reports etc, which should suit most needs.
These are the default compiler settings:
compilerOptions: {
emitDecoratorMetadata: true,
experimentalDecorators: true,
jsx: "react",
module: "commonjs",
sourceMap: true,
target: "ES5"
},
exclude: ["node_modules"]
The default karma-coverage
instrumentation settings:
coverageReporter: {
instrumenterOptions: {
istanbul: { noCompact: true }
}
}
If the defaults aren't enough, the settings can be configured from karma.conf.js
:
-
karmaTypescriptConfig.tsconfig
- A path to atsconfig.json
file. The default compiler options will be replaced by the options in this file. -
karmaTypescriptConfig.compilerOptions
- This setting will override or add to existing compiler options.
Valid options are the same as for thecompilerOptions
section intsconfig.json
, with the exception ofoutDir
andoutFile
which are ignored since the code is compiled in-memory. -
karmaTypescriptConfig.exclude
- An array of file patterns to be excluded by the compiler. The values will be merged with existing options. The foldernode_modules
is excluded by default. -
karmaTypescriptConfig.include
- An array of file patterns to be included by the compiler. The values will be merged with existing options. This option is available in Typescript 2.0.0^. -
karmaTypescriptConfig.disableCodeCoverageInstrumentation
- If set to true, code coverage instrumentation will be disabled and you will see the original TypeScript code when debugging. -
karmaTypescriptConfig.excludeFromCoverage
- A regex for filtering which files should be excluded from coverage instrumentation. Defaults to/\.(d|spec|test)\.ts/
which excludes *.d.ts, *.spec.ts and *.test.ts. -
karmaTypescriptConfig.bundlerOptions.ignoredModuleNames
- An array of npm modules to be ignored by the bundler. Useful if a module in node_modules conditionally requires deprecated modules. -
karmaTypescriptConfig.reports
- The types of coverage reports that should be created when running the tests. Defaults to an html report in the directory./coverage
.-
Available report types:
"clover": "coverage"
"cobertura": "coverage"
"html": "coverage"
"json-summary": "coverage"
"json": "coverage"
"lcovonly": "coverage"
-
The following reporters can have their output written directly to the console by setting the destination to "" or null, ie "text-summary": "":
"teamcity": "coverage", // "destination/path" or null or ""
"text-lcov": "coverage", // ...
"text-summary": "coverage",
"text": "coverage"
-
-
karmaTypescriptConfig.transformPath
- A function for renaming compiled file extensions to.js
. Defaults to renaming.ts
and.tsx
to.js
. -
karmaTypescriptConfig.transformPath
- A function for renaming compiled file extensions to.js
. Defaults to renaming.ts
and.tsx
to.js
. -
karmaTypescriptConfig.remapOptions
- Pass options toremap-istanbul
.-
Available options:
exclude
, a regex for excluding files from remappingwarn
, a function for handling error messages
-
Example of a full karmaTypescriptConfig
configuration:
karmaTypescriptConfig: {
tsconfig: "./tsconfig.json",
compilerOptions: {
noImplicitAny: true,
},
include: ["**/*.ts"],
exclude: ["broken"],
bundlerOptions: {
ignoredModuleNames: ["react/addons"],
},
disableCodeCoverageInstrumentation: false,
excludeFromCoverage: /\.(d|spec|test)\.ts/,
remapOptions: {
warn: function(message){
console.log(message);
}
},
reports:
{
"html": "coverage",
"text-summary": ""
},
transformPath: function(filepath) {
return filepath.replace(/\.(ts|tsx)$/, ".js");
}
},
If noEmitOnError
is set to a truthy value, in either tsconfig.json
or in the compiler options in karmaTypescriptConfig
, the karma process will exit with ts.ExitStatus.DiagnosticsPresent_OutputsSkipped
if any compilation errors occur.
Modules imported in Typescript code, for example import { Component } from "@angular/core";
, will be automatically loaded and bundled along with their dependencies.
Also, a full Node.js environment will be provided with global variables and browser shims for builtin core modules:
- __dirname
- __filename
- Buffer
- global
- process
- assert
- buffer
- console
- constants
- crypto
- domain
- events
- http
- https
- os
- path
- punycode
- querystring
- stream
- string_decoder
- timers
- tty
- url
- util
- vm
- zlib
The plugin uses detective and browser-resolve from the browserify tool chain to traverse the dependency tree and load the source code from node_modules.
Note: automatic bundling will only be performed if compilerOptions.module
is set to "commonjs"
, and there are import statements in the Typescript source code.
Style files (.css|.less|.sass|.scss) are served as dummy modules to the browser running the tests, allowing you to load styles using the Typescript import statement, ie import "./style/app.scss";
.
This means you can import styles in order to let, for instance, webpack load the styles with less-loader or scss-loader etc for bundling later on, without breaking the unit test runner.
Typescript 1.6.2^ is required.
Versions 1.6.2 - 1.7.5 work but aren't as heavily tested as versions 1.8.10 and up.
Please also note that more accurate remapped test coverage is produced for Typescript 1.8.10^.
This software is licensed with the MIT license.
© 2016 Erik Barke, Monounity