modify node ci example

This commit is contained in:
menshibin 2024-09-25 19:56:30 +08:00
parent b5f1b0dcd3
commit 366921bf5c
1 changed files with 9 additions and 3 deletions

View File

@ -43,9 +43,15 @@ async function schemalessInsert() {
} }
async function test() { async function test() {
try {
console.log("begin line_example") console.log("begin line_example")
await schemalessInsert(); await schemalessInsert();
console.log("end line_example") console.log("end line_example")
} catch(e) {
console.log("eeeeeeeeeeeeeer", err)
await taos.sleep(100);
}
} }
test() test()