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 ec54f6e commit 325e3baCopy full SHA for 325e3ba
1 file changed
test/nuxt/a11y.spec.ts
@@ -58,6 +58,11 @@ const allowedWarnings: RegExp[] = [
58
// vue-i18n logs this when <i18n-t> is used outside a component-scoped i18n;
59
// it falls back to the global scope and still renders correctly.
60
/\[intlify\] Not found parent scope/,
61
+ // mountSuspended wraps each component instance and calls expose() after
62
+ // setup. For recursive components (e.g. DiffFileTree rendering child
63
+ // DiffFileTree instances), this triggers a duplicate expose() call on the
64
+ // inner wrapper. The warning does not affect test correctness.
65
+ /expose\(\) should be called only once/,
66
]
67
68
beforeEach(() => {
0 commit comments