You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expect(screen.getByText("The team behind .club have customized their ENS experience, so we're unable to help you import the name at this time")).toBeInTheDocument()
211
+
expect(
212
+
screen.getByText(
213
+
"The team behind .club have customized their ENS experience, so we're unable to help you import the name at this time",
214
+
),
215
+
).toBeInTheDocument()
212
216
})
213
217
214
218
it('should show customized TLD message for TLDs not managed by DNSRegistrar',()=>{
expect(screen.getByText("The team behind .xyz have customized their ENS experience, so we're unable to help you import the name at this time")).toBeInTheDocument()
237
+
expect(
238
+
screen.getByText(
239
+
"The team behind .xyz have customized their ENS experience, so we're unable to help you import the name at this time",
240
+
),
241
+
).toBeInTheDocument()
234
242
})
235
243
236
244
it('should show normal import options for managed TLDs',()=>{
0 commit comments