mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 16:37:13 +02:00
Make a prettier table to display OT&E check results
We now display the results of each check in addition to the overall result. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=231051913
This commit is contained in:
parent
c6e58d3bff
commit
5272d8ca7f
10 changed files with 182 additions and 105 deletions
|
@ -34,12 +34,25 @@ registry.json.ote = {};
|
|||
|
||||
/**
|
||||
* @typedef {{
|
||||
* clientId: string,
|
||||
* description: string,
|
||||
* requirement: number,
|
||||
* timesPerformed: number,
|
||||
* completed: boolean
|
||||
* }}
|
||||
*/
|
||||
registry.json.ote.OteStatusDetail;
|
||||
|
||||
|
||||
/**
|
||||
* @typedef {{
|
||||
* clientId: string,
|
||||
* completed: boolean,
|
||||
* details: !Array.<registry.json.ote.OteStatusDetail>
|
||||
* }}
|
||||
*/
|
||||
registry.json.ote.OteStatusResult;
|
||||
|
||||
|
||||
/**
|
||||
* @typedef {{
|
||||
* status: string,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue