nestjs / typescript-starter

Nest framework TypeScript starter :coffee:
https://nestjs.com
1.86k stars 1.04k forks source link

Ra Labs-Coding assignment #277

Closed XinhaoZhao closed 1 year ago

XinhaoZhao commented 1 year ago

For this assignment, I implemented three main functions for creating, retrieving, and deleting tasks in order to implement the task management feature. The tasks are stored in local memory in a task array, and we can create tasks by pushing a new task object to the array, retrieving it by its unique id, and deleting a particular task by filtering the task array to only contain those with different unique ids than the input one. I also implemented unit tests and integration tests for the feature to test the feature.