mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-12 08:16:05 -07:00
styling for #298 done, just need to wire up the model and do the actual status check
This commit is contained in:
parent
9f74d31f1d
commit
46f7a0769e
14 changed files with 180 additions and 23 deletions
|
@ -64,6 +64,7 @@ namespace PlexRequests.UI.Tests
|
|||
PlexRequestMock = new Mock<ISettingsService<PlexRequestSettings>>();
|
||||
PlexRequestMock.Setup(x => x.GetSettings()).Returns(new PlexRequestSettings());
|
||||
PlexRequestMock.Setup(x => x.GetSettingsAsync()).Returns(Task.FromResult(new PlexRequestSettings()));
|
||||
LandingPageMock.Setup(x => x.GetSettings()).Returns(new LandingPageSettings());
|
||||
Bootstrapper = new ConfigurableBootstrapper(with =>
|
||||
{
|
||||
with.Module<UserLoginModule>();
|
||||
|
@ -81,8 +82,6 @@ namespace PlexRequests.UI.Tests
|
|||
var expectedSettings = new AuthenticationSettings { UserAuthentication = false, PlexAuthToken = "abc" };
|
||||
AuthMock.Setup(x => x.GetSettings()).Returns(expectedSettings);
|
||||
|
||||
|
||||
|
||||
Bootstrapper.WithSession(new Dictionary<string, object>());
|
||||
|
||||
var browser = new Browser(Bootstrapper);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue