This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Karma.
Summary
Runs karma start with a function for settings.
- Assembly
- Cake
.Karma .dll - Namespace
- Cake
.Karma - Containing Type
- KarmaAliases
Syntax
public static void KarmaStart(this ICakeContext context, Action<KarmaStartSettings> configureSettings)
Examples
Define the configuration file
KarmaStart(settings =>
{
settings.ConfigFile = "karma.conf.js";
});
Attributes
Type | Description |
---|---|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
configureSettings | Action |
Function to supply for configuring settings. |
Return Value
Type | Description |
---|---|
void |