Skip to content

Commit c256d5b

Browse files
author
=
committed
update changelog, fix test
1 parent c1da3dc commit c256d5b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog (2024)
2+
- 2.3.5 (Oct 16)
3+
- Fix apigen to use ToT from github for downloading json files. Update to latest protocol
24
- 2.3.4 (Mar 18)
35
- Fix return types for calls that return two-dimensional arrays
46
- 2.3.3 (Jan 31)

v2/gcd_test.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,6 @@ func testCleanUp() {
6262
}
6363

6464
func TestDeleteProfileOnExit(t *testing.T) {
65-
if runtime.GOOS == "windows" {
66-
//t.Skip("windows will hold on to the process handle too long")
67-
}
68-
6965
debugger := NewChromeDebugger(WithDeleteProfileOnExit(),
7066
WithFlags([]string{"--headless"}),
7167
)
@@ -75,6 +71,9 @@ func TestDeleteProfileOnExit(t *testing.T) {
7571
if err != nil {
7672
t.Fatalf("error starting chrome: %s\n", err)
7773
}
74+
75+
debugger.NewTab()
76+
7877
debugger.ExitProcess()
7978
time.Sleep(3 * time.Second)
8079
if stat, err := os.Stat(profileDir); err == nil {

0 commit comments

Comments
 (0)