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

chore: update a few reference guide overview pages #19296

Merged
merged 2 commits into from
Nov 8, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/docs/porting-to-gatsby.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
---
title: Porting to Gatsby
disableTableOfContents: true
---

Many times when you want to build a Gatsby project, you'll already have a website in some form. Depending on the technology and setup of your older website, the approach for porting it to Gatsby may vary.

These guides cover the various scenarios in which you may want to convert a web project to Gatsby. There are other possibilities as well: [file an issue](/contributing/how-to-file-an-issue/) to recommend a guide that the Gatsby community would find helpful.

<GuideList slug={props.slug} />
7 changes: 6 additions & 1 deletion docs/docs/testing.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
---
title: Testing
title: Adding Testing
overview: true
disableTableOfContents: true
---

One of the benefits of building a Gatsby project is the ability to add automated tests for your components, APIs, pages, and more. With Gatsby, you can employ modern tooling like Jest, Cypress, Testing Library, Storybook, Enzyme, and any other JavaScript testing tool to build a robust React web application.

In these guides, you can learn the common tools and setup instructions for adding testing functionality to your Gatsby project. There are likely more possibilities than what are listed here: search the [open issues on GitHub](https://github.com/gatsbyjs/gatsby/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+testing) to chime in about your desired testing use case, or [file an issue](/contributing/how-to-file-an-issue/) of your own.

<GuideList slug={props.slug} />

## Other resources
Expand Down
1 change: 1 addition & 0 deletions docs/docs/themes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Themes
overview: true
disableTableOfContents: true
---

Using a Gatsby theme, all of your default configuration (shared functionality, data sourcing, design) is abstracted out of your site, and into an installable package.
Expand Down