testConfig() — vue Function Reference
Architecture documentation for the testConfig() function in vue-test.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 3eb35f0d_6dc1_f72c_c071_2d54958e371a["testConfig()"] 25effca2_c2c7_284b_3dc7_c79887320755["Test"] 3eb35f0d_6dc1_f72c_c071_2d54958e371a -->|defined in| 25effca2_c2c7_284b_3dc7_c79887320755 f0c4654d_b29c_6ca4_bd2e_fdb6640fbbb6["testProperties()"] 3eb35f0d_6dc1_f72c_c071_2d54958e371a -->|calls| f0c4654d_b29c_6ca4_bd2e_fdb6640fbbb6 84fb879b_4231_08c7_b6cf_181122088ccb["testMethods()"] 3eb35f0d_6dc1_f72c_c071_2d54958e371a -->|calls| 84fb879b_4231_08c7_b6cf_181122088ccb style 3eb35f0d_6dc1_f72c_c071_2d54958e371a 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
Defined In
Source
Frequently Asked Questions
What does testConfig() do?
testConfig() is a function in the vue codebase, defined in types/test/vue-test.ts.
Where is testConfig() defined?
testConfig() is defined in types/test/vue-test.ts at line 62.
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