< Summary

Information
Class: Elsa.Expressions.JavaScript.Notifications.CreatingJavaScriptEngine
Assembly: Elsa.Expressions.JavaScript
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Expressions.JavaScript/Notifications/CreatingJavaScriptEngine.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 11
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Options()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Expressions.JavaScript/Notifications/CreatingJavaScriptEngine.cs

#LineLine coverage
 1using Elsa.Expressions.Models;
 2using Elsa.Mediator.Contracts;
 3
 4namespace Elsa.Expressions.JavaScript.Notifications;
 5
 6/// <summary>
 7/// This notification is published when a JavaScript engine is being created.
 8/// </summary>
 9/// <param name="Options">The options to use when creating the JavaScript engine.</param>
 10/// <param name="Context">The context in which the JavaScript engine is being created.</param>
 18811public record CreatingJavaScriptEngine(Jint.Options Options, ExpressionExecutionContext Context) : INotification;

Methods/Properties

get_Options()