瀏覽代碼

chore: \s match all whitespaces (#5091)

YOU 9 年之前
父節點
當前提交
23a20ce09d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      test/unit/features/directives/once.spec.js

+ 1 - 1
test/unit/features/directives/once.spec.js

@@ -338,5 +338,5 @@ describe('Directive v-once', () => {
 })
 
 function expectTextContent (vm, text) {
-  expect(vm.$el.textContent.replace(/\r?\n|\r|\s/g, '')).toBe(text)
+  expect(vm.$el.textContent.replace(/\s+/g, '')).toBe(text)
 }