Skip to content

Commit

Permalink
chore: fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoushaw committed Jan 30, 2025
1 parent 6a4eebd commit 3274ff8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 46 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ai-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Install puppeteer dependencies
run: |
cd packages/web-integration
npx puppeteer browsers install chrome
- name: Build project
run: pnpm run build

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,80 +7,65 @@ exports[`automation - planning input > input value 1`] = `
"id": "fbc2d002",
"prompt": "the input field with placeholder 'What needs to be done?'",
},
"param": {
"value": "learning english",
},
"param": null,
"thought": undefined,
"type": "Input",
"type": "Tap",
},
]
`;

exports[`automation - planning input > input value 2`] = `
[
{
"locate": {
"id": "fbc2d002",
"prompt": "the input field labeled 'What needs to be done?'",
"prompt": "the input field with placeholder 'What needs to be done?'",
},
"param": {
"value": "learning english",
},
"thought": undefined,
"type": "Input",
},
{
"locate": null,
"param": {
"value": "Enter",
},
"thought": undefined,
"type": "KeyboardPress",
},
]
`;

exports[`automation - planning input > input value Add, delete, correct and check 1`] = `
exports[`automation - planning input > input value 2`] = `
[
{
"locate": {
"id": "fbc2d002",
"prompt": "the task input box with content 'Learn English'",
},
"param": {
"value": "Learn English tomorrow",
"prompt": "the input field with placeholder 'What needs to be done?'",
},
"param": null,
"thought": undefined,
"type": "Input",
"type": "Tap",
},
]
`;

exports[`automation - planning input > input value Add, delete, correct and check 2`] = `
[
{
"locate": {
"id": "fbc2d002",
"prompt": "the task input box containing 'Learn English'",
"prompt": "the input field with placeholder 'What needs to be done?'",
},
"param": {
"value": "Learn Skiing",
"value": "learning english",
},
"thought": undefined,
"type": "Input",
},
{
"param": {
"value": "Enter",
},
"thought": undefined,
"type": "KeyboardPress",
},
]
`;

exports[`automation - planning input > input value Add, delete, correct and check 3`] = `
exports[`automation - planning input > input value Add, delete, correct and check 1`] = `
[
{
"locate": {
"id": "fbc2d002",
"prompt": "the task input box containing 'Learn English'",
},
"param": {
"value": "Learn",
"value": "Learn English tomorrow",
},
"thought": undefined,
"type": "Input",
Expand Down

This file was deleted.

0 comments on commit 3274ff8

Please sign in to comment.