Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
e02d871
test: add first integration test for CLI->socket navigate command
cv Jan 17, 2026
48ef76c
test: add integration test for click command with element ref
cv Jan 17, 2026
33a6914
test: add integration test for CLI error when socket unavailable
cv Jan 17, 2026
c3d8c99
test: add integration test for type command
cv Jan 17, 2026
b3beb0c
test: add integration test for snap->screenshot alias
cv Jan 17, 2026
32b6c9d
test: add integration test for --tab-id global option
cv Jan 17, 2026
46565cb
refactor: extract runCliAndCapture helper, add --window-id test
cv Jan 17, 2026
21e75ff
test: add integration test for read->page.read alias
cv Jan 17, 2026
0533326
test: add integration test for click with x,y coordinates
cv Jan 17, 2026
3c8e4f5
test: add integration test for namespaced tab.list command
cv Jan 17, 2026
5482c9e
test: add integration test for click with --selector option
cv Jan 17, 2026
a5dd4be
test: add integration test for js command with code
cv Jan 17, 2026
ab0f3d6
test: add integration test for window.new with url and dimensions
cv Jan 17, 2026
7032d90
test: add integration test for --incognito boolean flag
cv Jan 17, 2026
4a2ca45
test: add integration test for scroll command
cv Jan 17, 2026
75a796a
test: add integration test for wait.element command
cv Jan 17, 2026
8ac8941
test: add integration test for type with --submit flag
cv Jan 17, 2026
5c552e1
test: add integration test for net->network alias
cv Jan 17, 2026
ed5c104
test: add integration test for tab.new with url
cv Jan 17, 2026
8ecaeee
test: add integration test for error response handling
cv Jan 17, 2026
e0fe6e5
test: add integration test for key command
cv Jan 17, 2026
77a8e40
test: add integration tests for console, back, forward commands
cv Jan 17, 2026
a9ebece
test: add integration tests for hover, drag, emulate.network
cv Jan 17, 2026
ccf576e
test: add integration tests for frame.list, dialog.accept, cookie.list
cv Jan 17, 2026
233590b
test: add integration test for tab.switch
cv Jan 17, 2026
506b358
test: add integration tests for tab.close, tab.name, tab.reload
cv Jan 17, 2026
0ab5fd9
test: add integration tests for window.list, window.focus, window.close
cv Jan 17, 2026
48c5fce
test: add integration tests for scroll.to, scroll.top, scroll.bottom
cv Jan 17, 2026
f5c307b
test: add integration tests for wait.url, wait.network, wait.load
cv Jan 17, 2026
7e9fdcd
test: add integration tests for locate.role, locate.text, page.text
cv Jan 17, 2026
f0b7af3
test: add integration tests for network.get, network.body, network.clear
cv Jan 17, 2026
0e4ceb8
test: add integration tests for perf.metrics, health, zoom
cv Jan 17, 2026
fbc5699
test: add integration tests for form.fill, search, find alias
cv Jan 17, 2026
2227cc4
test: add integration tests for dialog.dismiss, dialog.info, page.state
cv Jan 17, 2026
2cd1c97
test: add integration tests for emulate.device, frame.switch, frame.main
cv Jan 17, 2026
f0da7d2
test: add integration tests for history.search, history.list, bookmar…
cv Jan 17, 2026
88c3905
test: add integration tests for cookie.get, cookie.set, cookie.clear
cv Jan 17, 2026
9926085
test: add integration tests for emulate.cpu, emulate.viewport, emulat…
cv Jan 17, 2026
029a189
refactor: convert integration tests to table-driven format with it.each
cv Jan 17, 2026
47dba8a
test: add more commands to table-driven tests
cv Jan 17, 2026
777f06b
test: add integration tests for tab groups, wait, upload, resize, smo…
cv Jan 18, 2026
6841f38
fix: resolve typecheck errors in integration tests
cv Jan 18, 2026
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
22 changes: 20 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/chrome": "^0.0.287",
"@types/node": "^25.0.9",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"typescript": "^5.7.2",
Expand Down
Loading