Home / Function/ testConfig() — vue Function Reference

testConfig() — vue Function Reference

Architecture documentation for the testConfig() function in vue-test.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  5961c2f4_d69b_2bd8_9e4b_340c8b4d6d0e["testConfig()"]
  6686185c_6a57_ec09_3b8a_174d4b806a56["testProperties()"]
  5961c2f4_d69b_2bd8_9e4b_340c8b4d6d0e -->|calls| 6686185c_6a57_ec09_3b8a_174d4b806a56
  bfa16728_a451_598d_2889_e0c1003788d9["testMethods()"]
  5961c2f4_d69b_2bd8_9e4b_340c8b4d6d0e -->|calls| bfa16728_a451_598d_2889_e0c1003788d9
  style 5961c2f4_d69b_2bd8_9e4b_340c8b4d6d0e 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

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