testConfig() — vue Function Reference
Architecture documentation for the testConfig() function in vue-test.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 552fd830_8532_a5a2_6be7_03cacc9847f6["testConfig()"] e9794455_40e9_631e_ed02_d8332d0a7da1["testProperties()"] 552fd830_8532_a5a2_6be7_03cacc9847f6 -->|calls| e9794455_40e9_631e_ed02_d8332d0a7da1 0a7cbc09_3890_89a8_7492_0e0ff39b0daa["testMethods()"] 552fd830_8532_a5a2_6be7_03cacc9847f6 -->|calls| 0a7cbc09_3890_89a8_7492_0e0ff39b0daa style 552fd830_8532_a5a2_6be7_03cacc9847f6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
types/test/vue-test.ts lines 62–82
static testConfig() {
const { config } = this
config.silent
config.optionMergeStrategies
config.devtools
config.errorHandler = (err, vm) => {
if (vm instanceof Test) {
vm.testProperties()
vm.testMethods()
}
}
config.warnHandler = (msg, vm) => {
if (vm instanceof Test) {
vm.testProperties()
vm.testMethods()
}
}
config.keyCodes = { esc: 27 }
config.ignoredElements = ['foo', /^ion-/]
config.async = false
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testConfig() do?
testConfig() is a function in the vue codebase.
What does testConfig() call?
testConfig() calls 2 function(s): testMethods, testProperties.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free