-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Persistence TestKit documentation article #3889
Persistence TestKit documentation article #3889
Conversation
d649835
to
d6bcdf7
Compare
Part of #3877 |
@Aaronontheweb do you like wording better? Can I continue in the same manner? |
@valdisz I'll take a look at it, since I would really love to have this up on the website to go along with the v1.4.0-beta2 release we just pushed |
@Aaronontheweb so... do you like it now? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Content looks good, but the tests are failing - any idea why @valdisz ?
@@ -0,0 +1,179 @@ | |||
--- | |||
uid: persistence-testing | |||
title: Persistence Testing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's rename this to something more descriptive: "Testing Persistence Akka.NET Actors"
@@ -69,14 +70,17 @@ public class CounterActorTests : PersistenceTestKit | |||
[Fact] | |||
public async Task CounterActor_internal_state_will_be_lost_if_underlying_persistence_store_is_not_available() | |||
{ | |||
await WithJournalWrite(write => write.Fail(), () => | |||
await WithJournalWrite(write => write.Fail(), async () => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, that would do it
Looks like you forgot to add the article to the |
@sean-gilliam ah shit - mind sending in a PR for that? |
@Aaronontheweb Sure thing #4001 |
A new article which will cover new Persistence TestKit.