* Creates a fresh loader instance with the default locale already set.
()
| 12 | * Creates a fresh loader instance with the default locale already set. |
| 13 | */ |
| 14 | function createLoader() { |
| 15 | const loader = createIgnoredKeysLoader(IGNORED_KEYS); |
| 16 | loader.setDefaultLocale(defaultLocale); |
| 17 | return loader; |
| 18 | } |
| 19 | |
| 20 | describe("ignored-keys loader", () => { |
| 21 | it("should omit the ignored keys when pulling the default locale", async () => { |
no test coverage detected