We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76f5a25 commit 5f83837Copy full SHA for 5f83837
1 file changed
backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs
@@ -64,6 +64,14 @@ public async Task DisposeAsync()
64
{
65
await _fixture.CrdtApi.DeleteEntry(entry.Id);
66
}
67
+ await foreach (var pos in _fixture.FwDataApi.GetPartsOfSpeech())
68
+ {
69
+ await _fixture.FwDataApi.DeletePartOfSpeech(pos.Id);
70
+ }
71
+ foreach (var pos in await _fixture.CrdtApi.GetPartsOfSpeech().ToArrayAsync())
72
73
+ await _fixture.CrdtApi.DeletePartOfSpeech(pos.Id);
74
75
76
77
public SyncTests(SyncFixture fixture)
0 commit comments