feat(server.tests.test7): 新增 server 实验 7

This commit is contained in:
2025-12-02 11:41:46 +08:00
parent 04cd6f3a96
commit b791fb6d1e
7 changed files with 100 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
console.log("开始");
setTimeout(() => {
console.log("Timeout");
}, 0);
setImmediate(() => {
console.log("Immediate");
});
console.log("结束");