Skip to content

Commit

Permalink
fix: RavenDB License issue in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet committed Sep 23, 2024
1 parent bd6e961 commit 1d3f361
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using LinkDotNet.Blog.Infrastructure.Persistence.RavenDb;
using LinkDotNet.Blog.TestUtilities;
using Raven.Client.Documents;
using Raven.Embedded;
using Raven.TestDriver;

namespace LinkDotNet.Blog.IntegrationTests.Infrastructure.Persistence.RavenDb;
Expand Down Expand Up @@ -166,6 +167,11 @@ private static void StartServerIfNotRunning()
{
DataDirectory = "./RavenDbTest/",
FrameworkVersion = null,
Licensing = new ServerOptions.LicensingOptions
{
EulaAccepted = true,
DisableAutoUpdate = true,
},
});
}
}
Expand Down

0 comments on commit 1d3f361

Please sign in to comment.