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(docs): no sidebar menu links with Appium documentation #4188

Merged
merged 1 commit into from
Feb 12, 2024
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
7 changes: 7 additions & 0 deletions docs/helpers/Appium.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
permalink: /helpers/Appium
editLink: false
sidebar: auto
title: Appium
---

<!-- Generated by documentation.js. Update this documentation by updating the source code. -->

## Appium
Expand Down
6 changes: 4 additions & 2 deletions runok.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@ Our community prepared some valuable recipes for setting up CI systems with Code
cfg.replace(regex, '[1]');
});

if (name === 'Appium') {
await this.docsAppium();
}

await writeToFile(helperMarkDownFile(name), (cfg) => {
cfg.append(`---
permalink: /helpers/${name}
Expand All @@ -244,8 +248,6 @@ title: ${name}
cfg.textFromFile(helperMarkDownFile(name));
});
}

await this.docsAppium();
},

async wiki() {
Expand Down
Loading