Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix wrong testing guide redirect #1791

Merged
merged 1 commit into from
Mar 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/testing.md → docs/testing-overview.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: testing
id: testing-overview
title: Testing
author: Vojtech Novak
authorURL: https://twitter.com/vonovak
Expand Down
4 changes: 2 additions & 2 deletions website/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@
"systrace": {
"title": "Systrace"
},
"testing": {
"testing-overview": {
"title": "Testing"
},
"text-style-props": {
Expand Down Expand Up @@ -3779,7 +3779,7 @@
"version-0.62/version-0.62-systrace": {
"title": "Systrace"
},
"version-0.62/version-0.62-testing": {
"version-0.62/version-0.62-testing-overview": {
"title": "Testing"
},
"version-0.62/version-0.62-text-style-props": {
Expand Down
2 changes: 1 addition & 1 deletion website/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"running-on-device",
"fast-refresh",
"debugging",
"testing",
"testing-overview",
"typescript",
"upgrading"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
id: version-0.62-testing
id: version-0.62-testing-overview
title: Testing
author: Vojtech Novak
authorURL: https://twitter.com/vonovak
description: This guide introduces React Native developers to the key concepts behind testing, how to write good tests, and what kinds of tests you can incorporate into your workflow.
original_id: testing
original_id: testing-overview
---

As your codebase expands, small errors and edge cases you don’t expect can cascade into larger failures. Bugs lead to bad user experience and ultimately, business losses. One way to prevent fragile programming is to test your code before releasing it into the wild.
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_sidebars/version-0.62-sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"version-0.62-running-on-device",
"version-0.62-fast-refresh",
"version-0.62-debugging",
"version-0.62-testing",
"version-0.62-testing-overview",
"version-0.62-typescript",
"version-0.62-upgrading"
],
Expand Down