From: Evan You Date: Mon, 11 May 2020 19:44:13 +0000 (-0400) Subject: test: fix hmr test id X-Git-Tag: v3.0.0-beta.12~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa1672a8bd5bad6bfb7522c779b2c6c36e9cb01d;p=thirdparty%2Fvuejs%2Fcore.git test: fix hmr test id --- diff --git a/packages/runtime-core/__tests__/hmr.spec.ts b/packages/runtime-core/__tests__/hmr.spec.ts index e23a222ff2..45d86daa53 100644 --- a/packages/runtime-core/__tests__/hmr.spec.ts +++ b/packages/runtime-core/__tests__/hmr.spec.ts @@ -193,8 +193,8 @@ describe('hot module replacement', () => { // #1157 - component should force full props update when HMR is active test('force update child component w/ static props', () => { const root = nodeOps.createElement('div') - const parentId = 'test2-parent' - const childId = 'test2-child' + const parentId = 'test-force-props-parent' + const childId = 'test-force-props-child' const Child: ComponentOptions = { __hmrId: childId,