Brendan Forster
Brendan Forster
A placeholder for when they make the preview bits available (around June 26)
From https://gist.github.com/xpaulbettsx/5632430 ``` var toast = ToastContentFactory.CreateToastText02(); toast.TextHeading.Text = "A Thing!"; toast.TextBodyWrap.Text = "DO IT"; toast.Lang = "en-US"; toast.BaseUri = "http://google.com"; toast.Duration = BoxKite.Notifications.ToastDuration.Long; toast.StrictValidation = false; ToastNotificationManager.CreateToastNotifier().Show(new ToastNotification(toast.GetXml())); ```...
Related to https://github.com/desktop/desktop/pull/14974 and the test added in e4b3a13c075ed3c589d3790d6ee4af15a71cbbb7 ## Description While trying to cut a Linux release for 3.0.5 I hit failures with this test, that suggested the `GIT_TEST_ASSUME_DIFFERENT_OWNER=1`...
**Please describe the problem you think should be solved** When adding a GitHub repository that's a fork (identified via the API), Desktop will add an `upstream` remote if needed: https://github.com/desktop/desktop/blob/57b5373b26dee6acbb40a47a1cdc5843e3aa6df1/app/src/lib/stores/app-store.ts#L4049-L4057...
I wanted to provide an update to this situation that will hopefully address some concerns. First off, many thanks to @anaisbetts for her hard work over the years on creating...
If I set an environment variable, exceptions like this in an integration test should be skipped, not failed: ``` PullRequestReviewCommentsClientTests.TimestampsAreUpdated [FAIL] 2635 System.AggregateException : One or more errors occurred. 2636...
https://developer.github.com/v3/repos/#list-all-public-repositories > Note: Pagination is powered exclusively by the since parameter. Use the Link header to get the URL for the next page of repositories. This is different to the...
I disabled some tests in 0f90d20e3015d7e405160f9348544c7dd5ac16b0 as my test account is not an administrator for the Octokit.net repository - and admin is necessary to see the repository traffic. Instead, I'd...
Opening this to track making this easier to understand and eliminate confusion about `HttpClient` global and per-`Request` timeouts (the lower of the two is what will be used). - [...