Skip to content

Commit c589ce7

Browse files
committed
remove wip badge
1 parent 2b0a4ed commit c589ce7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/guide/reusability/composables.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,4 +363,5 @@ If you have experience with React, you may notice that this looks very similar t
363363

364364
- [Reactivity In Depth](/guide/extras/reactivity-in-depth.html): for a low-level understanding of how Vue's reactivity system works.
365365
- [State Management](/guide/scaling-up/state-management.html): for patterns of managing state shared by multiple components.
366+
- [Testing Composables](/guide/scaling-up/testing.html#testing-composables): tips on unit testing composables.
366367
- [VueUse](https://vueuse.org/): an ever-growing collection of Vue composables. The source code is also a great learning resource.

src/guide/scaling-up/testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
aside: deep
33
---
44

5-
# Testing <Badge text="WIP" />
5+
# Testing
66

77
## Overview
88

@@ -88,7 +88,7 @@ We recommend using `@testing-library/vue` for testing components in applications
8888

8989
- [Cypress](https://www.cypress.io/) is an E2E test solution, but it also supports [Component Testing](https://docs.cypress.io/guides/component-testing/introduction) which can test components in real browsers with a GUI that shows the actual DOM state during tests.
9090

91-
- [Nightwatch v2](https://v2.nightwatchjs.org/) is another E2E test runner with Vue Component Testing support in v2 (currently beta - [Exmaple Project](https://github.com/nightwatchjs-community/todo-vue)).
91+
- [Nightwatch](https://v2.nightwatchjs.org/) is another E2E test runner with Vue Component Testing support. ([Exmaple Project](https://github.com/nightwatchjs-community/todo-vue) in Nightwatch v2)
9292

9393
## E2E Testing
9494

0 commit comments

Comments
 (0)