-
-
Notifications
You must be signed in to change notification settings - Fork 260
Open
Description
I changed untracked property and try to visit same page.
But the page didn't reload.
Error case
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...
Solution
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?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels