UNPKG

429 BJavaScriptView Raw
1const chalk = require("chalk");
2const argv = require("yargs").argv;
3
4(async function() {
5
6 console.log(`${chalk.green("PRE --- TEST 52")} ${process.argv.slice(2)} ${JSON.stringify(argv)}`);
7
8 await new Promise(resolve => {
9 setTimeout(() => {
10 console.log(`${chalk.green("ATTT --- TEST 52")}`);
11 resolve();
12 }, 3500);
13 });
14 console.log(`${chalk.green("POST --- TEST 52")}`);
15})();