import { mount } from 'enzyme'; import React from 'react'; import { BlurView } from '..'; it(`renders a native blur view`, () => { const component = mount(); expect( component .find('ViewManagerAdapter_ExpoBlurView') .first() .prop('proxiedProperties') ).toMatchSnapshot(); });