Skip to content

Commit

Permalink
Fixes #101
Browse files Browse the repository at this point in the history
  • Loading branch information
ackava committed Nov 30, 2024
1 parent bad4571 commit 187025e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions YantraJS.Core.Tests/ClrObjects/DisposableTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public void FieldAccess()
JSValue guidTypeValue = ClrType.From(typeof(Guid));
c["guid"] = guidTypeValue;
string result = c.Eval("guid.empty.toString()").ToString();
Assert.AreEqual("00000000-0000-0000-0000-000000000000", result);
}

// [TestMethod]
Expand Down
1 change: 1 addition & 0 deletions YantraJS.Core/Core/Clr/ClrType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
using System.ComponentModel;
using YantraJS.Expressions;
using YantraJS.Generator;
using YantraJS.Core.Core.Clr;

namespace YantraJS.Core.Clr
{
Expand Down

0 comments on commit 187025e

Please sign in to comment.