Skip to content

Commit 0020715

Browse files
committed
Integration test on demand
1 parent 928e675 commit 0020715

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

source/test/Slackbot.Net.SlackClients.Http.Tests/FileUploadTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"));

source/test/Slackbot.Net.SlackClients.Http.Tests/UsersListTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)