-
Notifications
You must be signed in to change notification settings - Fork 14
e2e flow #467
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
Open
CodeGhost21
wants to merge
17
commits into
tinyhumansai:main
Choose a base branch
from
CodeGhost21:e2e-flow
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
e2e flow #467
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
28cc2cc
feat(e2e): overhaul E2E test suite with comprehensive flow coverage
CodeGhost21 fad483b
feat(e2e): overhaul E2E test suite with comprehensive flow coverage
CodeGhost21 04d1a43
fix(e2e): remove unused imports to pass lint
CodeGhost21 f084773
style: apply prettier formatting
CodeGhost21 98a49ee
Merge branch 'main' into e2e-flow
senamakel c233dc4
feat(e2e): split rewards/settings specs, fix Mac2 navigation and bill…
CodeGhost21 d153488
fix(e2e): harden assertions, fix Mac2 navigation, update Skills page …
CodeGhost21 507f9ed
chore(e2e): remove chat-skills-integrations from flow runner
CodeGhost21 0b6dd77
fix(e2e): add skillId to built-in card CTA buttons, fix E2E selectors
CodeGhost21 d3e3cbd
chore(e2e): harden E2E scripts, specs, CI workflow, and subconscious …
CodeGhost21 4c34f1d
fix(e2e): remove unused imports and variables flagged by lint
CodeGhost21 3a7a443
style(e2e): apply Prettier formatting to E2E helpers and specs
CodeGhost21 5ecba20
fix(ci): run full E2E spec list on all platforms, fix Linux RPC bridge
CodeGhost21 d8dc62a
Merge branch 'main' into e2e-flow
CodeGhost21 44303ae
Merge remote-tracking branch 'origin/main' into e2e-flow
CodeGhost21 99ed414
chore(e2e): scroll-aware assertions and spec tweaks across flow tests
CodeGhost21 3238133
ci(e2e): don't let one broken spec block the whole macOS job
CodeGhost21 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| #!/usr/bin/env bash | ||
| # Run E2E auth & access control tests only. See app/scripts/e2e-run-spec.sh. | ||
| set -euo pipefail | ||
| exec "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/e2e-run-spec.sh" "test/e2e/specs/auth-access-control.spec.ts" "auth" | ||
| exec "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/e2e-run-spec.sh" "test/e2e/specs/auth-session-management.spec.ts" "auth" |
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't drop the service-connectivity flow from the all-flows runner.
app/test/e2e/specs/service-connectivity-flow.spec.tsstill owns theOPENHUMAN_SERVICE_MOCK=1install/start/stop/restart coverage, andapp/scripts/e2e-run-spec.shstill has dedicated state-file setup for that mode. Removing it here turns that path into dead coverage for the main E2E entrypoint.↩️ Suggested addition
run "test/e2e/specs/notion-flow.spec.ts" "notion" run "test/e2e/specs/screen-intelligence.spec.ts" "screen-intelligence" +OPENHUMAN_SERVICE_MOCK=1 run "test/e2e/specs/service-connectivity-flow.spec.ts" "service-connectivity" run "test/e2e/specs/voice-mode.spec.ts" "voice-mode" run "test/e2e/specs/text-autocomplete-flow.spec.ts" "text-autocomplete"📝 Committable suggestion
🤖 Prompt for AI Agents