Skip to content

Commit f1b061c

Browse files
committed
fix(connect): fix hello test
1 parent 8f6b720 commit f1b061c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/connect/hello-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe("hello", function () {
2020
return fetch("http://localhost:3000")
2121
.then(res => res.text())
2222
.then(text => {
23-
assert.equal(text,
23+
assert.equal(text, responseText);
2424
});
2525
});
2626
});

0 commit comments

Comments
 (0)