diff --git a/Singer.API/ClientApp/package-lock.json b/Singer.API/ClientApp/package-lock.json index 35c9c320..0a4f8e79 100644 --- a/Singer.API/ClientApp/package-lock.json +++ b/Singer.API/ClientApp/package-lock.json @@ -1,12 +1,12 @@ { "name": "Singer", - "version": "0.1.0-issue-msal.1588", + "version": "0.1.0-issue-msal.1589", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "Singer", - "version": "0.1.0-issue-msal.1588", + "version": "0.1.0-issue-msal.1589", "hasInstallScript": true, "dependencies": { "@angular/animations": "^14.3.0", diff --git a/Singer.API/ClientApp/package.json b/Singer.API/ClientApp/package.json index d5896793..21f4fbc9 100644 --- a/Singer.API/ClientApp/package.json +++ b/Singer.API/ClientApp/package.json @@ -1,6 +1,6 @@ { "name": "Singer", - "version": "0.1.0-issue-msal.1588", + "version": "0.1.0-issue-msal.1589", "scripts": { "ng": "ng", "start": "ng serve", diff --git a/Tests/TestData/BaseTest.cs b/Tests/TestData/BaseTest.cs index d060b295..eecd46c9 100644 --- a/Tests/TestData/BaseTest.cs +++ b/Tests/TestData/BaseTest.cs @@ -15,11 +15,11 @@ public abstract class BaseTest [SetUp] public virtual void Setup() { - //var options = new DbContextOptionsBuilder() - // .UseInMemoryDatabase(Guid.NewGuid().ToString()) - // .Options; + var options = new DbContextOptionsBuilder() + .UseInMemoryDatabase(Guid.NewGuid().ToString()) + .Options; - //TestDataContext = new ApplicationDbContext(options); + TestDataContext = new ApplicationDbContext(options); }