-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
76b97ae
commit 1f316b0
Showing
20 changed files
with
116 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<template> | ||
<p>To be implemented</p> | ||
<ProjectsView /> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
// | ||
import ProjectsView from './pages/projects/ProjectsView.vue' | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,73 @@ | ||
enum Status { | ||
NOT_STARTED='not_started', | ||
IN_PROGRESS='in_progress', | ||
COMPLETED='completed', | ||
} | ||
|
||
export type Activity = { | ||
action: string, | ||
date: string, | ||
} | ||
|
||
export type TestPlan = { | ||
id: number, | ||
modified: string, | ||
created: string, | ||
title: string, | ||
type: string, | ||
} | ||
|
||
export type Requirement = { | ||
id: number, | ||
updated: string, | ||
created: string, | ||
title: string, | ||
requirements: string[], | ||
} | ||
|
||
export type TestSuite = { | ||
id: number, | ||
modified: string, | ||
created: string, | ||
title: string, | ||
number_of_test_cases: number, | ||
test_plan: number, | ||
} | ||
|
||
export type TestRun = { | ||
|
||
} | ||
|
||
export type TestCase = { | ||
id: number, | ||
modified: string, | ||
created: string, | ||
title: string, | ||
testcase_title: string, | ||
requirement: string | ||
last_saved: { | ||
id: number, | ||
full_name: string, | ||
} | ||
test_suite: string, | ||
description: string, | ||
test_steps: string, | ||
expected_result: string, | ||
} | ||
export type Project = { | ||
id: number, | ||
user: string, | ||
teams: string[], | ||
modified: string, | ||
created: string, | ||
activity: Activity[], | ||
total_test_plan: any, | ||
total_requirements_docs: any, | ||
total_suites: any, // update the any to type of each attribute | ||
total_test_runs: any, | ||
incomplete_test_runs_assigned_to_you: any, | ||
people_with_the_most_incomplete_test_runs: any, | ||
title:string, | ||
repo_link:string, | ||
short_description:string, | ||
total_test_plan: TestPlan[], | ||
total_requirements_docs: Requirement[], | ||
total_suites: TestSuite[], | ||
total_test_runs: TestRun[], | ||
incomplete_test_runs_assigned_to_you: TestRun[], | ||
people_with_the_most_incomplete_test_runs: TestRun[], | ||
title: string, | ||
repo_link: string, | ||
short_description: string, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.