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 init with a function for settings.
            
		- Assembly
 - Cake
.Karma .dll  - Namespace
 - Cake
.Karma  - Containing Type
 - KarmaAliases
 
Syntax
public static void KarmaInit(this ICakeContext context, Action<KarmaSettings> configureSettings)
	Examples
Define the configuration file
KarmaInit(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 | 
