17 lines
322 B
TypeScript
17 lines
322 B
TypeScript
import createDatabaseNode from "../functions/createDatabaseNode";
|
|
|
|
(async () => {
|
|
try {
|
|
const node = await createDatabaseNode(
|
|
"localhost",
|
|
3306,
|
|
"root",
|
|
"password"
|
|
);
|
|
|
|
console.log("node", node);
|
|
} catch (error) {
|
|
console.error("Error during test execution:", error);
|
|
}
|
|
})();
|