From 26414a69824a37a65c0fb3a6c423f4cb6c1ef068 Mon Sep 17 00:00:00 2001 From: Cody McGinnis Date: Fri, 28 Aug 2020 16:21:31 -0400 Subject: [PATCH] fix(docs): move testing docs to website docs --- app/tests/Creating Tests.md => docs/docs/dev-tests.md | 4 ++-- docs/sidebars.js | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) rename app/tests/Creating Tests.md => docs/docs/dev-tests.md (83%) diff --git a/app/tests/Creating Tests.md b/docs/docs/dev-tests.md similarity index 83% rename from app/tests/Creating Tests.md rename to docs/docs/dev-tests.md index 5e211c0f..1709ccd7 100644 --- a/app/tests/Creating Tests.md +++ b/docs/docs/dev-tests.md @@ -1,6 +1,6 @@ # Basics -Any folder under `/app/tests` containing `native_posix.keymap` will be selected when running -`./run-test.sh all`. +Running tests requires native [posix support](./dev-posix-board). Any folder under `/app/tests` +containing `native_posix.keymap` will be selected when running `./run-test.sh all`. `test_case/events.patterns` contains sed patterns that will select the interesting output from the application diff --git a/docs/sidebars.js b/docs/sidebars.js index 51313fc5..d4266670 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -20,6 +20,7 @@ module.exports = { "dev-setup", "dev-boards-shields-keymaps", "dev-posix-board", + "dev-tests", ], "Dev Guides": ["dev-guide-new-shield", "dev-guide-usb-logging"], },