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 106ee66 commit 749e142Copy full SHA for 749e142
src/test/java/io/simplelocalize/cli/processor/keys/ReactIntlKeyExtractorTest.java
@@ -23,7 +23,16 @@ public void shouldExtractKeysFromLines() throws Exception {
23
24
//then
25
Assertions.assertThat(keys).hasSize(8);
26
- Assertions.assertThat(keys).contains("VISITS", "LIKES", "CREATED_COUNT", "COMMENTS");
+ Assertions.assertThat(keys).containsExactlyInAnyOrder(
27
+ "VISITS",
28
+ "LIKES",
29
+ "CREATED_COUNT",
30
+ "COMMENTS",
31
+ "COVER_IMAGE.PLACEHOLDER",
32
+ "COVER_IMAGE.TITLE",
33
+ "ACHIEVEMENTS",
34
+ "AVAILABLE_SOON"
35
+ );
36
}
37
38
@Test
0 commit comments