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
2 changes: 1 addition & 1 deletion content/docs/support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repo coverage, routing, execution, and local CLI state.
| A slash command does not behave as expected | [Slash Commands](/cli/commands), [Slash Commands guide](/cli/guides/slash-commands), and [Custom Slash Commands](/configure-and-extend/custom-slash-commands) |
| You need the API error shape or status code | [API Quickstart](/reference/api#quickstart) and [API Errors](/reference/api#errors) |
| You need to know what is safe to share | [Security and Data Handling](/reference/security-and-data-handling) |
| A doc link or claim looks wrong | [Docs source](https://github.com/webrenew/mogplex-docs) |
| A doc link or claim looks wrong | [Docs source](https://github.com/Mogplex/docs) |

For a longer decision tree, use [Troubleshooting](/guides/troubleshooting).

Expand Down
7 changes: 7 additions & 0 deletions tests/execution-environments-docs.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,10 @@ test('internal links across public docs resolve to existing routes', async () =>
`expected to check more than 100 internal docs routes, checked ${checkedRoutes}`,
);
});

test('support links to the current docs repository', async () => {
const support = await read('content/docs/support.mdx');

assert.doesNotMatch(support, /github\.com\/webrenew\/mogplex-docs/);
assert.match(support, /github\.com\/Mogplex\/docs/);
});