Add tests

This commit is contained in:
dominik-zeglen 2019-09-10 18:02:35 +02:00
parent 6bb2b80d11
commit 270f7bf4a6

View file

@ -0,0 +1,25 @@
import { getMatchingLocale, Locale } from "./Locale";
describe("Matches locale to browser settings", () => {
it("if first language is an exact match", () => {
const locales = ["fr", "es", "en"];
expect(getMatchingLocale(locales)).toBe(Locale.FR);
});
it("if there is an exact match, but it's not first preference", () => {
const locales = ["does-not-exist", "tr", "de", "fr"];
expect(getMatchingLocale(locales)).toBe(Locale.TR);
});
it("or returns undefined if there is no match", () => {
const locales = [
"does-not-exist-1",
"does-not-exist-2",
"does-not-exist-3"
];
expect(getMatchingLocale(locales)).toBe(undefined);
});
});