applying test

This commit is contained in:
daniel muniz
2025-01-24 10:50:57 -03:00
parent 947de9f2ea
commit 4db9094584

10
src/test-app.js Normal file
View File

@@ -0,0 +1,10 @@
const app = require('./app');
(async () => {
try {
const categories = await app('www.facebook.com');
console.log(categories);
} catch (error) {
console.error('Error occurred:', error);
}
})();