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 1096890 commit c24f492Copy full SHA for c24f492
test/unit/modules/compiler/parser.spec.js
@@ -1,7 +1,7 @@
1
import { parse } from 'compiler/parser/index'
2
import { extend } from 'shared/util'
3
import { baseOptions } from 'web/compiler/index'
4
-import { isIE } from 'core/util/env'
+import { isIE, isEdge } from 'core/util/env'
5
6
describe('parser', () => {
7
it('simple element', () => {
@@ -436,7 +436,7 @@ describe('parser', () => {
436
expect('Interpolation inside attributes has been removed').toHaveBeenWarned()
437
})
438
439
- if (!isIE) {
+ if (!isIE && !isEdge) {
440
it('duplicate attribute', () => {
441
parse('<p class="class1" class="class1">hello world</p>', baseOptions)
442
expect('duplicate attribute').toHaveBeenWarned()
0 commit comments