Skip to content

Commit a15b394

Browse files
committed
whitespace
1 parent 5ed22d1 commit a15b394

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/guide/scaling-up/TestingApiSwitcher.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ const testingLangs = [
105105
border-bottom: 2px solid rgba(255,255,255,.2);
106106
background: #2f2f2f;
107107
color: inherit;
108-
109108
}
110109
111110
:global(.dark .testing-code-examples .tab.active) {

src/guide/scaling-up/testing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ A component can be tested in two ways:
9494
Tests that are "Whitebox tests" are aware of the implementation details and dependencies of a component. They are focused on **isolating** the component under test. These tests will usually involve mocking some, if not all of your component's children, as well as setting up plugin state and dependencies (e.g. Vuex).
9595

9696
2. Blackbox: Component Testing
97+
9798
Tests that are "Blackbox tests" are unaware of the implementation details of a component. These tests mock as little as possible to test the integration of your component and the entire system. They usually render all child components and are considered more of an "integration test". See the [Component Testing recommendations](#component-testing) below.
9899

99100
### Recommendation

0 commit comments

Comments
 (0)