Add some 'load scenario' todo tests

This commit is contained in:
2025-06-16 22:41:31 -07:00
parent 2dfd5cdac3
commit 417a599c5c
3 changed files with 29 additions and 4 deletions

View File

@@ -259,7 +259,8 @@ if (process.env.NODE_ENV === 'test') {
res.end("Not found");
}
}).listen(3005, () => {
console.log('test server is online');
const serverUrl = 'http://localhost:3005';
console.log(`Test server running at ${serverUrl}`);
});
} else {
buildOptions.define = { 'window.IS_DEV': 'true' };
@@ -321,7 +322,8 @@ if (process.env.NODE_ENV === 'test') {
req.pipe(proxyReq, { end: true });
}
}).listen(8080, (e) => {
console.log('server is online', e);
const serverUrl = 'http://localhost:8080';
console.log(`Development server running at ${serverUrl}`);
});
}