File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -11,33 +11,33 @@ export const MockUser: UserResponse = {
11
11
created_at : "" ,
12
12
}
13
13
14
- export const MockProject : Project = {
15
- id : "test-project" ,
14
+ export const MockOrganization : Organization = {
15
+ id : "test-org" ,
16
+ name : "Test Organization" ,
16
17
created_at : "" ,
17
18
updated_at : "" ,
18
- organization_id : "test-org" ,
19
- name : "Test Project" ,
20
- provisioner : "test-provisioner" ,
21
- active_version_id : "" ,
22
19
}
23
20
24
21
export const MockProvisioner : Provisioner = {
25
22
id : "test-provisioner" ,
26
23
name : "Test Provisioner" ,
27
24
}
28
25
29
- export const MockOrganization : Organization = {
30
- id : "test-org" ,
31
- name : "Test Organization" ,
26
+ export const MockProject : Project = {
27
+ id : "test-project" ,
32
28
created_at : "" ,
33
29
updated_at : "" ,
30
+ organization_id : MockOrganization . id ,
31
+ name : "Test Project" ,
32
+ provisioner : MockProvisioner . id ,
33
+ active_version_id : "" ,
34
34
}
35
35
36
36
export const MockWorkspace : Workspace = {
37
37
id : "test-workspace" ,
38
38
name : "Test-Workspace" ,
39
39
created_at : "" ,
40
40
updated_at : "" ,
41
- project_id : "test-project" ,
42
- owner_id : "test-user" ,
41
+ project_id : MockProject . id ,
42
+ owner_id : MockUser . id
43
43
}
You can’t perform that action at this time.
0 commit comments