Skip to content

Commit d7d6709

Browse files
committed
test: use mutation observer for more reliable simple-combobox tests
1 parent 4efc3bf commit d7d6709

10 files changed

Lines changed: 98 additions & 55 deletions

File tree

GEMINI.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Jetski Global Instructions & Context
2+
3+
## Rules
4+
- **Skip Tests by Default**: Do not run unit or integration tests automatically after making code changes.
5+
- **Run Tests on Demand**: Only run tests when explicitly prompted by the user (e.g., "run tests", "verify with tests").
6+
- **Always allowed to run `git status`**: You can run `git status` at any time to check the state of the repository.
7+
- **Git Commits**: Follow Angular's commit message format (`<type>(<scope>): <subject>`). Use imperative mood, lowercase subject, and no trailing period. Valid scopes are in `.ng-dev/commit-message.mts`. Scopes can be omitted for `test` or refactoring types. Use `multiple` for cross-component changes. Do not use `aria` as a standalone scope.
8+
- **Git Pushing**: Always push branches to the `tjshiu` remote (e.g., `git push tjshiu <branch-name>`), as `origin` is not configured.
9+
10+
## Aliases
11+
- **start-fresh**: Run `git stash push --include-untracked -m "work-in-progress"`, checkout `main`, pull `origin main`, checkout a new branch, and stash pop.
12+
- **update-main**: Sync local main with remote using `git checkout main && git pull upstream main && git checkout -`.
13+

src/aria/private/simple-combobox/simple-combobox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* found in the LICENSE file at https://angular.dev/license
77
*/
88

9-
import {KeyboardEventManager, ClickEventManager, Modifier} from '../behaviors/event-manager';
9+
import {KeyboardEventManager, ClickEventManager} from '../behaviors/event-manager';
1010
import {computed, signal, untracked} from '@angular/core';
1111
import {SignalLike, WritableSignalLike} from '../behaviors/signal-like/signal-like';
1212
import {ExpansionItem} from '../behaviors/expansion/expansion';

0 commit comments

Comments
 (0)