Skip to content

Instantly share code, notes, and snippets.

@carlows
Created August 17, 2017 15:22
Show Gist options
  • Save carlows/dffa77418c67e2589bde2c05f9de6995 to your computer and use it in GitHub Desktop.
Save carlows/dffa77418c67e2589bde2c05f9de6995 to your computer and use it in GitHub Desktop.
test('Profile view should render User details', async () => {
const { wrapper, store } = setupTests();
const waitFor = createWaitForElement('.profile-username');
await waitFor(wrapper);
// data is present here
console.log(wrapper.debug());
const tag = wrapper.find('.profile-username');
expect(tag.text()).toEqual('Foo Bar');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment