Skip to content
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
6 changes: 3 additions & 3 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ export default defineConfig({
label: 'Export tests',
collapsed: true,
items: [
{ label: 'Export to Spreadsheet', link: '/project/import-export/export-tests/export-to-spreadsheet' },
{ label: 'Download as Markdown Files', link: '/project/import-export/download-tests-as-files/download-manual-tests-as-files' },
{ label: 'Export to Spreadsheet', link: '/project/import-export/export-tests/export-to-spreadsheet' },
{ label: 'Download as Markdown Files', link: '/project/import-export/export-tests/download-manual-tests-as-files' },
{ label: 'Export to Obsidian', link: '/project/import-export/export-tests/export-to-obsidian' },
{ label: 'Classical Tests Markdown Format', link: '/project/import-export/export-tests/classical-tests-markdown-format' },
{ label: 'Classical Tests Markdown Format', link: '/project/import-export/export-tests/classical-tests-markdown-format' },
],
},
],
Expand Down
2 changes: 2 additions & 0 deletions redirects.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ const redirects = {
"/project/import-export/import-tests-from-csvxls": "/project/import-export/import/import-tests-from-csvxls",
"/project/import-export/import-bdd": "/project/import-export/import/import-bdd",
"/project/import-export/export-tests": "/project/import-export/export-tests/export-to-spreadsheet",
"/project/import-export/download-tests-as-files": "/project/import-export/export-tests/download-manual-tests-as-files",
"/project/import-export/download-tests-as-files/download-manual-tests-as-files": "/project/import-export/export-tests/download-manual-tests-as-files",
// reporter
"/project/runs/reporter/api": "/test-reporting/api",
"/project/runs/reporter/debug-file-format": "/test-reporting/debug-file-format",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Download Manual Tests as Files
description: Learn how to manage manual tests using Git version control by exporting them from Testomat.io as Markdown files. This guide details how to export tests, track changes locally, write and update tests using a code editor, and then seamlessly import changes back into Testomat.io using the CLI. This workflow aligns manual testing with modern DevOps practices, offering full history, branching, and collaborative editing benefits.
type: article
url: https://docs.testomat.io/project/import-export/download-tests-as-files/download-manual-tests-as-files
url: https://docs.testomat.io/project/import-export/export-tests/download-manual-tests-as-files
head:
- tag: meta
attrs:
Expand Down
Loading