-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(content): support the new content shape for QA tests
- Loading branch information
1 parent
b5e1e21
commit 3ac7ca7
Showing
5 changed files
with
42 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "campus", | ||
"name": "qa", | ||
"attrs": { | ||
"capacity": 5 | ||
}, | ||
"children": { | ||
"module-m1": {} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "module", | ||
"name": "module-m1", | ||
"attrs": { | ||
"capacity": 5 | ||
}, | ||
"children": { | ||
"project-p1": {} | ||
} | ||
} |
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,4 +1,4 @@ | ||
# Project A | ||
# Project P1 | ||
|
||
This is an example of a dummy project subject | ||
|
||
|
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"type": "project", | ||
"name": "project-p1", | ||
"attrs": { | ||
"groupMax": 2, | ||
"groupMin": 1, | ||
"validations": [ | ||
{ | ||
"type": "user_audit", | ||
"delay": 0, | ||
"ratio": 2, | ||
"required": 1, | ||
"matchWhere": { | ||
"name": "userInEvent", | ||
"type": "function" | ||
} | ||
} | ||
], | ||
"requiredAuditRatio": 0 | ||
} | ||
} |