We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f34e57 commit 3175f48Copy full SHA for 3175f48
1 file changed
tests/server.mjs
@@ -36,7 +36,10 @@ export default async function serve(port) {
36
async function verifyStartup(ws, port) {
37
await new Promise((resolve, reject) => {
38
ws.server.on("listening", () => {
39
- console.log(`Server started on http://localhost:${port}`);
+ console.log("Server started:");
40
+ console.log(` http://localhost:${port}`);
41
+ console.log(` http://localhost:${port}?developerMode`);
42
+ console.log("");
43
resolve();
44
});
45
ws.server.on("error", (e) => {
0 commit comments