Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladyslav Koliesnik authored Sep 22, 2023
2 parents f807943 + daa8ed1 commit c34953c
Show file tree
Hide file tree
Showing 8 changed files with 1,911 additions and 41 deletions.
42 changes: 42 additions & 0 deletions cypress/fixtures/active-todos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"id": 257334,
"createdAt": "2023-09-19T08:21:56.486Z",
"updatedAt": "2023-09-19T08:23:07.096Z",
"userId": 1,
"title": "HTML",
"completed": false
},
{
"id": 257335,
"createdAt": "2023-09-19T08:21:58.410Z",
"updatedAt": "2023-09-19T08:23:06.511Z",
"userId": 1,
"title": "CSS",
"completed": false
},
{
"id": 257336,
"createdAt": "2023-09-19T08:22:02.989Z",
"updatedAt": "2023-09-19T08:23:05.883Z",
"userId": 1,
"title": "JS",
"completed": false
},
{
"id": 257337,
"createdAt": "2023-09-19T08:22:08.184Z",
"updatedAt": "2023-09-19T08:23:05.110Z",
"userId": 1,
"title": "TypeScript",
"completed": false
},
{
"id": 257338,
"createdAt": "2023-09-19T08:22:35.411Z",
"updatedAt": "2023-09-19T08:23:10.759Z",
"userId": 1,
"title": "React",
"completed": false
}
]
42 changes: 42 additions & 0 deletions cypress/fixtures/completed-todos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"id": 257334,
"createdAt": "2023-09-19T08:21:56.486Z",
"updatedAt": "2023-09-19T08:23:07.096Z",
"userId": 1,
"title": "HTML",
"completed": true
},
{
"id": 257335,
"createdAt": "2023-09-19T08:21:58.410Z",
"updatedAt": "2023-09-19T08:23:06.511Z",
"userId": 1,
"title": "CSS",
"completed": true
},
{
"id": 257336,
"createdAt": "2023-09-19T08:22:02.989Z",
"updatedAt": "2023-09-19T08:23:05.883Z",
"userId": 1,
"title": "JS",
"completed": true
},
{
"id": 257337,
"createdAt": "2023-09-19T08:22:08.184Z",
"updatedAt": "2023-09-19T08:23:05.110Z",
"userId": 1,
"title": "TypeScript",
"completed": true
},
{
"id": 257338,
"createdAt": "2023-09-19T08:22:35.411Z",
"updatedAt": "2023-09-19T08:23:10.759Z",
"userId": 1,
"title": "React",
"completed": true
}
]
42 changes: 42 additions & 0 deletions cypress/fixtures/todos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"id": 257334,
"createdAt": "2023-09-19T08:21:56.486Z",
"updatedAt": "2023-09-19T08:23:07.096Z",
"userId": 1,
"title": "HTML",
"completed": true
},
{
"id": 257335,
"createdAt": "2023-09-19T08:21:58.410Z",
"updatedAt": "2023-09-19T08:23:06.511Z",
"userId": 1,
"title": "CSS",
"completed": true
},
{
"id": 257336,
"createdAt": "2023-09-19T08:22:02.989Z",
"updatedAt": "2023-09-19T08:23:05.883Z",
"userId": 1,
"title": "JS",
"completed": true
},
{
"id": 257337,
"createdAt": "2023-09-19T08:22:08.184Z",
"updatedAt": "2023-09-19T08:23:05.110Z",
"userId": 1,
"title": "TypeScript",
"completed": false
},
{
"id": 257338,
"createdAt": "2023-09-19T08:22:35.411Z",
"updatedAt": "2023-09-19T08:23:10.759Z",
"userId": 1,
"title": "React",
"completed": false
}
]
Loading

0 comments on commit c34953c

Please sign in to comment.