Skip to content

Commit

Permalink
Added ignore for missing credentials to Graph tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Goldman committed Jun 22, 2020
1 parent d74700a commit 2f8af77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions FluentEmail.Graph.Tests/GraphSenderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void Setup()
Email.DefaultSender = sender;
}

[Test]
[Test, Ignore("Missing Graph credentials")]
public void CanSendEmail()
{
var email = Email
Expand All @@ -43,7 +43,7 @@ public void CanSendEmail()
Assert.IsTrue(response.Successful);
}

[Test]
[Test, Ignore("Missing Graph credentials")]
public async Task CanSendEmailAsync()
{
var email = Email
Expand All @@ -56,7 +56,7 @@ public async Task CanSendEmailAsync()
Assert.IsTrue(response.Successful);
}

[Test]
[Test, Ignore("Missing Graph credentials")]
public async Task CanSendEmailWithAttachments()
{
var stream = new MemoryStream();
Expand All @@ -83,7 +83,7 @@ public async Task CanSendEmailWithAttachments()
Assert.IsTrue(response.Successful);
}

[Test]
[Test, Ignore("Missing Graph credentials")]
public async Task CanSendHighPriorityEmail()
{
var email = Email
Expand Down

0 comments on commit 2f8af77

Please sign in to comment.