< Summary

Information
Class: Elsa.Expressions.JavaScript.Notifications.EvaluatedJavaScript
Assembly: Elsa.Expressions.JavaScript
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Expressions.JavaScript/Notifications/EvaluatedJavaScript.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 10
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_Engine()100%11100%

File(s)

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

#LineLine coverage
 1using Elsa.Expressions.Models;
 2using Elsa.Mediator.Contracts;
 3using Jint;
 4
 5namespace Elsa.Expressions.JavaScript.Notifications;
 6
 7/// <summary>
 8/// This notification is published every time a JavaScript expression has been evaluated.
 9/// </summary>
 55510public record EvaluatedJavaScript(Engine Engine, ExpressionExecutionContext Context, string Expression, object? Result) 

Methods/Properties

get_Engine()