This extension integrates Karma - Spectacular Test Runner for JavaScript with the test explorer in Visual Studio 2013 and Visual Studio 2015 Preview / CTP.
This extension is built using JsTestAdapter.
This test adapter runs tests in browsers using Karma. If you need to run tests in Node.js you might be interested in the Jasmine Node Test Adapter.
Features
Karma is started in the background with
autoWatchset totrue, so tests are run immediately when files change.Once Karma has concluded a test run the results are shown in the Test Explorer in Visual Studio. There is no need to click
Run Allin the Test Explorer.Any output from a test (f.ex. using
console.log) will be shown in the test result in the Test Explorer as a link:Output.The
portsetting in the Karma configuration file (normallykarma.conf.js) is ignored. A free port is chosen automatically.Karma is only started if the configuration files (
karma.conf.jsand optionallyKarmaTestAdapter.json) are included in a Visual Studio project. Any other files, that Karma uses do not need to be included in a project.
Features specific to Jasmine tests
The file and position of each test is registered, so that the Test Explorer in Visual Studio can link to the source code for the test.
Source maps in test files are used to find the position of tests. So if, for example, a test is written in Typescript and the compiled JavaScript file contains a source map the test explorer will link to the typescript file.
The stack trace of a failed test is shown as a list of function names that link to the relevant line and file. As with the position of of tests, source maps are used to link to the original source.
Prerequisites
Installation
Download and install from the Visual Studio Gallery here: Karma Test Adapter
Configuration
Set up Karma normally (as described here: Installation and here: Configuration).
Start testing!
If you want Visual Studio to work differently from how Karma is configured (if you for example only want to run PhantomJS from VS), you can create a JSON settings file called KarmaTestAdapter.json.
Example:
{
"$schema": "http://MortenHoustonLudvigsen.github.io/KarmaTestAdapter/KarmaTestAdapter.schema.json",
"KarmaConfigFile": "karma.conf.test.js",
"Name": "My tests",
"Extensions": "./Extensions",
"Traits": [ "Karma", { "Name": "Foo", "Value": "Bar" } ],
"Disabled": false,
"LogToFile": true,
"LogDirectory": "TestResults/Karma",
"config": {
"browsers": [
"PhantomJS"
]
}
}
These are the possible properties (all properties are optional):
$schemaSet to "http://MortenHoustonLudvigsen.github.io/KarmaTestAdapter/KarmaTestAdapter.schema.json" to get intellisense forKarmaTestAdapter.json.KarmaConfigFileUse this if you want to use a karma configuration file not namedkarma.conf.js.NameThe name of the test container. Used in the default generation of the fully qualified name for each test.TraitsAn array of traits to be attached to each test. A trait can be a string or an object containing propertiesNameandValue. A trait specified as a string or with only a name will be shown in the Test Explorer as just the string or name.ExtensionsPath to a node.js module implementing extensions. See below.DisabledSet to true, if the Karma test adapter should be disabled for this karma configuration file.LogToFileSet to true, if you want the adapter to write log statements to a log file (named KarmaTestAdapter.log).LogDirectoryWhere the log file should be saved (if LogToFile is true). If this property is not specified the directory in whichKarmaTestAdapter.jsonresides is used.configThis property overwrites any configurations from the karma configuration file.
KarmaTestAdapter.json must be encoded in one of the following encodings:
* UTF-8
* UTF-8 with BOM / Signature
* UTF-16 Big-Endian with BOM / Signature
* UTF-16 Little-Endian with BOM / Signature
Extensions
To customize generation of fully qualified names, display names and traits for each test it is now possible to supply a node module with extensions. An extensions module can implement any or all of these functions:
getDisplayNameGenerate the display name of a test.getFullyQualifiedNameGenerate the fully qualified name of a test. This must be unique for the test adapter to work properly. The class name for a test is generated from the inner most part of the fully qualified name separated by full stops.getTraitsSpecify traits for a test. Any traits specified inKarmaTestAdapter.jsonwill be inspec.traits.
The following module implemented in typescript implements the default functions:
interface Spec {
description: string;
suite: string[];
traits: Trait[];
}
interface Server {
testContainerName: string;
}
interface Trait {
name: string;
value: string;
}
export function getDisplayName(spec: Spec, server: Server): string {
var parts = spec.suite.slice(0);
parts.push(spec.description);
return parts
.filter(p => !!p)
.join(' ');
}
export function getFullyQualifiedName(spec: Spec, server: Server): string {
var parts = [];
if (server.testContainerName) {
parts.push(server.testContainerName);
}
var suite = spec.suite.slice(0);
parts.push(suite.shift());
suite.push(spec.description);
parts.push(suite.join(' '));
return parts
.filter(p => !!p)
.map(s => s.replace(/\./g, '-'))
.join('.');
}
export function getTraits(spec: Spec, server: Server): Trait[] {
return [];
}
The same module implemented in JavaScript:
exports.getDisplayName = function (spec, server) {
var parts = spec.suite.slice(0);
parts.push(spec.description);
return parts.filter(function (p) { return !!p; }).join(' ');
};
exports.getFullyQualifiedName = function (spec, server) {
var parts = [];
if (server.testContainerName) {
parts.push(server.testContainerName);
}
var suite = spec.suite.slice(0);
parts.push(suite.shift());
suite.push(spec.description);
parts.push(suite.join(' '));
return parts.
filter(function (p) { return !!p; }).
map(function (s) { return s.replace(/\./g, '-'); }).
join('.');
};
exports.getTraits = function (spec, server) {
return [];
};
Example: getDisplayName
Let's say the suites for a project represent classes and methods. In this case one might want the suites to be displayed separated by full stops. This can be implemented in an extension module.
Typescript:
export function getDisplayName(spec: Spec, server: Server): string {
return spec.suite.join('.') + ' ' + spec.description;
}
JavaScript:
exports.getDisplayName = function (spec, server) {
return spec.suite.join('.') + ' ' + spec.description;
};
Example: getFullyQualifiedName
Let's say the suites for a project represent classes and methods. In the class view the test explorer displays tests sorted by the inner most class name of the fully qualified name (as it would look in C#). If we want to show the full name of the classes in our project we can implement this in an extension module.
Typescript:
export function getFullyQualifiedName(spec: Spec, server: Server): string {
var parts = [];
// Add server.testContainerName to ensure uniqueness
if (server.testContainerName) {
parts.push(server.testContainerName);
}
// To ensure that the test explorer sees all suites as one identifier, we
// separate suites with '-', not '.'
parts.push(spec.suite.join('-'));
// Add the test description
parts.push(spec.description);
// The fully qualified name is the parts separated by '.'. We make sure that
// the parts do not contain '.', as this would confuse the test explorer
return parts
.map(s => s.replace(/\./g, '-'))
.join('.');
}
JavaScript:
exports.getFullyQualifiedName = function (spec, server) {
var parts = [];
// Add server.testContainerName to ensure uniqueness
if (server.testContainerName) {
parts.push(server.testContainerName);
}
// To ensure that the test explorer sees all suites as one identifier, we
// separate suites with '-', not '.'
parts.push(spec.suite.join('-'));
// Add the test description
parts.push(spec.description);
// The fully qualified name is the parts separated by '.'. We make sure that
// the parts do not contain '.', as this would confuse the test explorer
return parts.map(function (s) { return s.replace(/\./g, '-'); }).join('.');
};
Example: getTraits
Let's say we want to add the outer most suite as a trait for each test, while keeping any traits specified in KarmaTestAdapter.json. We can implement this in an extension module.
Typescript:
export function getTraits(spec: Spec, server: Server): Trait[]{
var traits = spec.traits;
var outerSuite = spec.suite[0];
if (outerSuite) {
traits.push({
name: 'Suite',
value: outerSuite
});
}
return traits;
}
JavaScript:
exports.getTraits = function (spec, server) {
var traits = spec.traits;
var outerSuite = spec.suite[0];
if (outerSuite) {
traits.push({
name: 'Suite',
value: outerSuite
});
}
return traits;
};
If we do not want to keep any traits specified in KarmaTestAdapter.json, we can simply ignore the existing traits.
Typescript:
export function getTraits(spec: Spec, server: Server): Trait[]{
var traits: Trait[] = [];
var outerSuite = spec.suite[0];
if (outerSuite) {
traits.push({
name: 'Suite',
value: outerSuite
});
}
return traits;
}
JavaScript:
exports.getTraits = function (spec, server) {
var traits = [];
var outerSuite = spec.suite[0];
if (outerSuite) {
traits.push({
name: 'Suite',
value: outerSuite
});
}
return traits;
};
Test containers
Test containers specify which Karma configuration files to use when running tests.
A project can contain more than one test container.
A directory can contain at most one test container.
Test containers are files named
karma.conf.jsorKarmaTestAdapter.json.If a test container is named
karma.conf.jsit specifies itself as the Karma configuration file to use.If a test container is named
KarmaTestAdapter.jsonit specifies the Karma configuration file to use in the optionalKarmaConfigFilesetting. If theKarmaConfigFilesetting is not specified, thenkarma.conf.jsin the same directory is used.A test container, which specifies a Karma configuration file that is not included in a project in the current solution or does not exist, will be disabled. I.e. no tests will be run for the container.
Only test containers, that are included in a project in the current solution, are used.
If there is a
KarmaTestAdapter.jsonfile in a project, then anykarma.conf.jsfile in the same directory is not used as a test container.If there is a
KarmaTestAdapter.jsonin a project in the current solution, that specifies a Karma configuration file in a different directory or project, then that Karma configuration file is not used as a test container.