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

epic: autocorrect 🚂 #12893

Draft
wants to merge 17 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
ea466d7
change(web): adds auto-correct filter, requiring letter in existing text
Jan 13, 2025
8eb5fc3
chore: seed epic/autocorrect
mcdurdin Jan 15, 2025
b299cec
change(web): re-enable autocorrect in Web
jahorton Jan 15, 2025
bd09450
chore: Revert "Merge pull request #12791 from keymanapp/fix/android/d…
jahorton Jan 15, 2025
2014f71
fix(android): restores Android help changes previously lumped-in with…
jahorton Jan 15, 2025
397cc7d
Merge pull request #12897 from keymanapp/change/revert-disabling-of-a…
jahorton Jan 16, 2025
4f7935a
Merge branch 'epic/autocorrect' into chore/merge-master-into-autocorrect
mcdurdin Jan 17, 2025
1892d92
chore: Merge branch 'master' into chore/merge-master-into-autocorrect
mcdurdin Jan 17, 2025
bcca646
Revert "Merge pull request #12940 from keymanapp/fix/web/unit-test-af…
Jan 20, 2025
54e2e70
Merge pull request #12877 from keymanapp/change/web/prevent-autocorre…
jahorton Jan 20, 2025
7c1d15f
chore(web): deletes unit-test line with now-invalid assumption
Jan 20, 2025
d9058ad
Merge pull request #12930 from keymanapp/chore/merge-master-into-auto…
jahorton Jan 21, 2025
74db3c9
Merge branch 'epic/autocorrect' into chore/merge-master-into-autocorrect
mcdurdin Jan 30, 2025
9fbcac8
Merge pull request #13088 from keymanapp/chore/merge-master-into-auto…
mcdurdin Jan 30, 2025
a43a378
Merge pull request #13222 from keymanapp/chore/merge-master-into-auto…
mcdurdin Feb 13, 2025
aa62ad4
Merge branch 'epic/autocorrect' into chore/merge-master-into-autocorrect
mcdurdin Mar 1, 2025
07c8b32
Merge pull request #13382 from keymanapp/chore/merge-master-into-auto…
mcdurdin Mar 1, 2025
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
Prev Previous commit
Next Next commit
chore(web): deletes unit-test line with now-invalid assumption
Joshua Horton committed Jan 20, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 7c1d15ff963f825b7ca9c400fddb5524a5a6515a
Original file line number Diff line number Diff line change
@@ -166,7 +166,6 @@ describe("PredictionContext", () => {
// by its following request before its response could be received.
assert.deepEqual(suggestions.map((obj) => obj.displayAs), ['“apple”', 'applied']);
assert.equal(suggestions.find((obj) => obj.tag == 'keep').displayAs, '“apple”');
assert.equal(suggestions.find((obj) => obj.transform.deleteLeft != 0).displayAs, 'applied');
// Our reused mocking doesn't directly provide the 'keep' suggestion; we
// need to remove it before testing for set equality.
assert.deepEqual(suggestions.splice(1), expected);