We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I changed untracked property and try to visit same page. But the page didn't reload.
test('visiting your route', async function (assert) { await visit('your route'); // Change untracked property // ... await visit('your route'); })
So I changed as below code and it works well. But it looks so strange...
test('visiting your route', async function (assert) { await visit('your route'); // Change untracked property // ... await visit('/') await visit('your route'); })
Is there any better way to refresh current page?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I changed untracked property and try to visit same page.
But the page didn't reload.
Error case
So I changed as below code and it works well.
But it looks so strange...
Solution
Is there any better way to refresh current page?
The text was updated successfully, but these errors were encountered: