Recovers lost files and commits work from the past 5-6 days. Holy shit that was a close call.

This commit is contained in:
Eyal Toledano
2025-04-07 19:55:03 -04:00
parent b3e7ebefd9
commit b7580e038d
42 changed files with 5180 additions and 1988 deletions

View File

@@ -1,5 +1,5 @@
/**
* Sample tasks data for tests
* Sample task data for testing
*/
export const sampleTasks = {
@@ -28,7 +28,23 @@ export const sampleTasks = {
dependencies: [1],
priority: "high",
details: "Implement user authentication, data processing, and API endpoints",
testStrategy: "Write unit tests for all core functions"
testStrategy: "Write unit tests for all core functions",
subtasks: [
{
id: 1,
title: "Implement Authentication",
description: "Create user authentication system",
status: "done",
dependencies: []
},
{
id: 2,
title: "Set Up Database",
description: "Configure database connection and models",
status: "pending",
dependencies: [1]
}
]
},
{
id: 3,