From 240e531ee512247da2d687e74bd5bd6bb51f0302 Mon Sep 17 00:00:00 2001 From: Hendra Gunawan <48410066+JadlionHD@users.noreply.github.com> Date: Sat, 6 Jul 2024 18:43:00 +0700 Subject: [PATCH] fix: change port webserver test --- test/basic-example/index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/basic-example/index.js b/test/basic-example/index.js index 26cbec5..b693fd3 100644 --- a/test/basic-example/index.js +++ b/test/basic-example/index.js @@ -2,7 +2,11 @@ import { Client, TextPacket, Peer } from "../../dist/index.js"; const client = new Client({ enet: { - ip: "0.0.0.0" + ip: "0.0.0.0", + port: 17091 + }, + https: { + port: 8080 // Testing purposes (Must be 80 if production) } });