We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 388403f commit bebb87bCopy full SHA for bebb87b
playground/vue/__tests__/vue.spec.ts
@@ -208,8 +208,11 @@ describe('hmr', () => {
208
209
test('should reload when relies file changed', async () => {
210
// rerender
211
- editFile('Hmr.vue', (code) => code.replace('HMR', 'HMR updated'))
212
await untilUpdated(() => page.textContent('h2.hmr'), 'HMR updated')
+ editFile('Hmr.vue', (code) =>
213
+ code.replace('HMR updated', 'HMR updated updated'),
214
+ )
215
+ await untilUpdated(() => page.textContent('h2.hmr'), 'HMR updated updated')
216
await untilUpdated(() => page.textContent('.hmr-number'), '100')
217
218
// reload
0 commit comments