Skip to content

Commit

Permalink
Update docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufozgul committed Feb 22, 2024
1 parent 3a89ba9 commit 66a0fbe
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ struct PluginsDocumentTip: Tip {

var actions: [Action] {
Action(title: "Open Documentations") {
NSWorkspace.shared.open(URL(string: "https://github.com/Trendyol/mockingstar")!)
NSWorkspace.shared.open(URL(string: "https://trendyol.github.io/mockingstar/documentation/mockingstar/meetplugins")!)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ struct HeaderConfigsTip: Tip {

var actions: [Action] {
Action(title: "Open Documentations") {
NSWorkspace.shared.open(URL(string: "https://github.com/Trendyol/mockingstar")!)
NSWorkspace.shared.open(URL(string: "https://trendyol.github.io/mockingstar/documentation/mockingstar/configurations")!)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ struct PathConfigsTip: Tip {

var actions: [Action] {
Action(title: "Open Documentations") {
NSWorkspace.shared.open(URL(string: "https://github.com/Trendyol/mockingstar")!)
NSWorkspace.shared.open(URL(string: "https://trendyol.github.io/mockingstar/documentation/mockingstar/configurations")!)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ struct QueryConfigsTip: Tip {

var actions: [Action] {
Action(title: "Open Documentations") {
NSWorkspace.shared.open(URL(string: "https://github.com/Trendyol/mockingstar")!)
NSWorkspace.shared.open(URL(string: "https://trendyol.github.io/mockingstar/documentation/mockingstar/configurations")!)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ private extension MenubarCommands {
enum Constant {
static let githubURL = URL(string: "https://github.com/Trendyol/mockingstar")!
static let githubIssuesURL = URL(string: "https://github.com/Trendyol/mockingstar/issues")!
static let documentsURL = URL(string: "https://trendyol.github.io/mockingstar/documentation/mockingstar/documentation")!
}
}

Expand Down Expand Up @@ -52,7 +53,7 @@ struct MenubarCommands: Commands {
Divider()

Link("Source Code", destination: Constant.githubURL)
Link("Documentation", destination: Constant.githubURL)
Link("Documentation", destination: Constant.documentsURL)
Link("Bug Report", destination: Constant.githubIssuesURL)

Button("Mocking Star Playground") {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ The latest binary can also be found on the releases page or clone and compile in

- [iOS Client Library](https://github.com/Trendyol/mockingstar-ios)
- [Android Client Library](https://github.com/Trendyol/mockingstar-android)
- You can check the document for other clients: [Documentation](https://github.com/Trendyol/mockingstar)
- You can check the document for other clients: [Documentation](https://trendyol.github.io/mockingstar/documentation/mockingstar/gettingstarted-customclient)

## Documentations
Browse the documentation to explore Mocking Star, integrate it into your project, and more.
- [Documentation](https://trendyol.github.com/mockingstar)
- [Documentation](https://trendyol.github.io/mockingstar/documentation/mockingstar/documentation)

---
### Optimizing UI Testing Efficiency at Trendyol iOS App:
Expand Down

0 comments on commit 66a0fbe

Please sign in to comment.