33 | `;
34 |
35 | exports[`React Apollo Multiple Clients should provide correct client 1`] = `
36 | Array [
37 |
40 |
43 |
44 | client1
45 |
46 |
47 |
,
48 |
51 |
54 |
55 | client2
56 |
57 |
58 |
,
59 | ]
60 | `;
61 |
62 | exports[`React Apollo Multiple Clients should provide correct client within nested provider 1`] = `
63 | Array [
64 |
67 |
70 |
71 | client1
72 |
73 |
74 |
,
75 |
78 |
81 |
82 | client1
83 |
84 |
87 |
88 | client1
89 |
90 |
91 |
94 |
97 |
98 | client2
99 |
100 |
101 |
102 |
103 |
,
104 |
107 |
110 |
111 | client2
112 |
113 |
114 |
,
115 | ]
116 | `;
117 |
118 | exports[`React Apollo Multiple Clients should throw error when client cannot be found 1`] = `[Error: Could not find client not-available]`;
119 |
120 | exports[`React Apollo Multiple Clients should throw error when client no client is given 1`] = `[Error: Please provide a client namespace]`;
121 |
122 | exports[`React Apollo Multiple Clients should throw error when provider has no clients 1`] = `[Error: You need to define at least one client]`;
123 |
124 | exports[`React Apollo Multiple Clients should work with class as well 1`] = `
125 |