File tree Expand file tree Collapse file tree
source/test/Slackbot.Net.SlackClients.Http.Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public FileUploadTests(ITestOutputHelper helper) : base(helper)
99 {
1010 }
1111
12- [ Fact ]
12+ [ Fact ( Skip = "Run on demand" ) ]
1313 public async Task FilesUploadTests ( )
1414 {
1515 var response = await SlackClient . FilesUpload ( new FileUploadRequest
@@ -25,7 +25,7 @@ public async Task FilesUploadTests()
2525 Assert . True ( response . Ok ) ;
2626 }
2727
28- [ Fact ]
28+ [ Fact ( Skip = "Run on demand" ) ]
2929 public async Task FilesUploadFileTests ( )
3030 {
3131 var bytes = Convert . FromBase64String ( File . ReadAllText ( "./Helpers/ImageBase64Encoded.txt" ) ) ;
Original file line number Diff line number Diff line change @@ -8,22 +8,22 @@ public UsersListTests(ITestOutputHelper helper) : base(helper)
88 {
99 }
1010
11- [ Fact ]
11+ [ Fact ( Skip = "Run on demand" ) ]
1212 public async Task UsersListWorks ( )
1313 {
1414 var response = await SlackClient . UsersList ( ) ;
1515 Assert . True ( response . Ok ) ;
1616 }
1717
18- [ Fact ]
18+ [ Fact ( Skip = "Run on demand" ) ]
1919 public async Task FindsAdmins ( )
2020 {
2121 var response = await SlackClient . UsersList ( ) ;
2222 var adminFound = response . Members . Any ( u => u . Is_Admin ) ;
2323 Assert . True ( adminFound ) ;
2424 }
2525
26- [ Fact ]
26+ [ Fact ( Skip = "Run on demand" ) ]
2727 public async Task FindsBots ( )
2828 {
2929 var response = await SlackClient . UsersList ( ) ;
You can’t perform that action at this time.
0 commit comments