Skip to content

Commit

Permalink
fix unit tests failing because there was no vernacular writing system
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev committed Jun 14, 2024
1 parent c2ebf16 commit 7246d65
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions backend/LcmCrdt.Tests/LexboxApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ await _api.CreateWritingSystem(WritingSystemType.Analysis,
Font = "Arial",
Exemplars = []
});
await _api.CreateWritingSystem(WritingSystemType.Vernacular,
new WritingSystem()
{
Id = "en",
Name = "English",
Abbreviation = "En",
Font = "Arial",
Exemplars = []
});
await _api.CreateEntry(new Entry
{
Id = _entry1Id,
Expand Down

0 comments on commit 7246d65

Please sign in to comment.