diff --git a/test/integration/Elsa.IntegrationTests/Scenarios/JavaScriptListAndArray/Tests.cs b/test/integration/Elsa.IntegrationTests/Scenarios/JavaScriptListAndArray/Tests.cs
deleted file mode 100644
index d1ef1c657..000000000
--- a/test/integration/Elsa.IntegrationTests/Scenarios/JavaScriptListAndArray/Tests.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-using System.Collections.Generic;
-using System.Dynamic;
-using Elsa.JavaScript.Helpers;
-using Jint;
-using Jint.Runtime.Interop;
-using Xunit;
-
-namespace Elsa.IntegrationTests.Scenarios.JavaScriptListAndArray;
-
-///
-/// Contains test cases for the functionality of the Engine class to enable list and array-like objects to be used in JavaScript as arrays.
-///
-public class Tests
-{
- private readonly Engine _engine;
-
- public Tests()
- {
- _engine = new Engine(cfg => cfg
- .SetWrapObjectHandler((engine, target, type) =>
- {
- var instance = new ObjectWrapper(engine, target);
-
- if (ObjectArrayHelper.DetermineIfObjectIsArrayLikeClrCollection(target.GetType()))
- instance.Prototype = engine.Intrinsics.Array.PrototypeObject;
-
- return instance;
- })
- );
- }
-
- [Fact(DisplayName = "Can access list properties as arrays")]
- public void Test1()
- {
- var person = new ExpandoObject();
-
- person.TryAdd("name", "John");
- person.TryAdd("age", 12);
-
- var languages = new List