Replies: 1 comment 2 replies
-
Hi @mozts2005, I’ve recently started using your NuGet package and noticed that while it includes endpoints for I noticed that your var configuration = new ConfigurationBuilder()
.SetBasePath(TestContext.CurrentContext.TestDirectory)
.AddJsonFile("appsettings.json", optional: true)
.AddUserSecrets("411e2606-2274-427d-ad1e-89c0d4bc9f5a", true)
.AddEnvironmentVariables()
.Build();
Admin = configuration.GetSection("admin").Get<UserSettings>();
Organization = configuration.GetSection("organization").Get<OrganizationSettings>();
Api = new ZendeskApi(Organization.SiteURL, Admin.Email, Admin.Password); The main branch currently only includes the organization section in the appsettings.json file, causing tests to fail due to the missing admin section. I assume I might need to set up a Zendesk test account and populate these values to get the integration tests working, but I’m unsure if that’s the intended approach. Could you clarify what’s needed to successfully run the integration tests? Once I have everything working, I’d be happy to submit a pull request for your review. Thanks for your time, and I look forward to your feedback! |
Beta Was this translation helpful? Give feedback.
-
👋 Welcome!
We’re using Discussions as a place to connect with other members of our community. We hope that you:
build together 💪.
To get started, comment below with an introduction of yourself and tell us about what you do with this community.
Beta Was this translation helpful? Give feedback.
All reactions