diff --git a/test/dbTester.js b/test/dbTester.js index e395339..4c37eaa 100644 --- a/test/dbTester.js +++ b/test/dbTester.js @@ -7,21 +7,6 @@ async function printProjects() { console.log('Projects:', projects); } -async function testCreateDestroyProject() { - const project = await databaseUtils.addProject('Test project', 'This is a test project'); - console.log('Project added:', project); - await printProjects(); - await databaseUtils.deleteProject(project.id); - await printProjects(); -} - -try { - testCreateDestroyProject(); -} catch (error) { - console.error('Error:', error); -} - - try { printProjects(); } catch (error) {