-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
suitable test suites. test: suitable test suites. test: add suitable test suites - Add `Copilot`, `StepPerformer`, `index` and `PromptCreator` suites - Add utils file - Add snapshot file for `PromptCreator` test
- Loading branch information
1 parent
4180c3b
commit 73e1858
Showing
9 changed files
with
452 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
export const customActionsCategory = [{ | ||
title: 'Custom Actions', | ||
items: [ | ||
{ | ||
signature: 'swipe(direction: string)', | ||
description: 'Swipes in the specified direction.', | ||
example: 'await swipe("up");', | ||
guidelines: ['Use this method to scroll the screen.'] | ||
} | ||
] | ||
}]; | ||
|
||
export const actionsCategory = [{ | ||
title: 'Actions', | ||
items: [ | ||
{ | ||
signature: 'tapButton(id: string)', | ||
description: 'Taps the button with the specified ID.', | ||
example: 'await tapButton("submit");', | ||
guidelines: ['Use this method to tap buttons.'] | ||
} | ||
] | ||
}]; | ||
|
||
export const actionsCategory2 = [{ | ||
title: 'Actions', | ||
items: [ | ||
{ | ||
signature: 'swipe(direction: string)', | ||
description: 'Swipes in the specified direction.', | ||
example: 'await swipe("up");', | ||
guidelines: ['Use this method to scroll the screen.'] | ||
} | ||
] | ||
}]; | ||
|
||
export const tapButtonContext = {tapButton: 'new tap button'}; | ||
export const functionContext = {function: 'newFlow'}; | ||
export const newFunctionContext = {function: 'newFunction'}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.