From b0d5258c6858353002c82a6ae968a9a07a6c3f0c Mon Sep 17 00:00:00 2001 From: lareinayanyu Date: Wed, 8 Jan 2025 20:04:51 +0800 Subject: [PATCH] fix: unit error --- packages/webpack-plugin/test/platform/common/mode.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webpack-plugin/test/platform/common/mode.spec.js b/packages/webpack-plugin/test/platform/common/mode.spec.js index 59a0238e0..7df73a9d2 100644 --- a/packages/webpack-plugin/test/platform/common/mode.spec.js +++ b/packages/webpack-plugin/test/platform/common/mode.spec.js @@ -76,7 +76,7 @@ describe('template should transform correct', function () { it('should work correct with web mode', function () { const input = '' const output = compileTemplate(input, { mode: 'web' }) - expect(output).toBe('获取用户信息') + expect(output).toBe("获取用户信息") }) it('should work normal if no attr in tag', function () {