1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`within Expo client loadAsync completes after loading a font 1`] = `
4[
5  "testsession-test-font",
6  "file:/test/test-font.ttf",
7]
8`;
9
10exports[`within Expo client loadAsync throws if downloading a font fails 1`] = `[Error: Failed to download asset for font "test-font"]`;
11
12exports[`within Expo client loadAsync throws if loading a downloaded font fails 1`] = `[Error: Intentional error from FontLoader mock]`;
13
14exports[`within Expo client processFontFamily defaults missing fonts to the system font 1`] = `
15[
16  "fontFamily "not-loaded" is not a system font and has not been loaded through expo-font.",
17]
18`;
19
20exports[`within Expo client processFontFamily defaults still-loading fonts to the system font 1`] = `
21[
22  "You started loading the font "loading", but used it before it finished loading. You need to wait for Font.loadAsync to complete before using the font.",
23]
24`;
25
26exports[`within Expo client processFontFamily scopes loaded names of loaded fonts 1`] = `"ExpoFont-testsession-test-font"`;
27