Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

update col size #16

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions reports/report-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ <h1>Web5 Spec Compliance Report</h1>
<h2 id="{{ $category }}_table-caption">{{ $category }}</h2>
<table aria-labelledby="{{ $category }}_table-caption">
<colgroup>
<col style="width: 25%;" />
<col style="width: 25%;" />
<col style="width: 25%;" />
<col style="width: 25%;" />
<col style="width: 16%;" />
<col style="width: 16%;" />
<col style="width: 16%;" />
<col style="width: 16%;" />
<col style="width: 16%;" />
<col style="width: 16%;" />
</colgroup>
<thead>
<tr>
Expand Down
17 changes: 8 additions & 9 deletions reports/sdks.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ var (
Type: "web5",
},
{
Name: "web5-core-kt",
Repo: "TBD54566975/web5-rs",
ArtifactName: "kotlin-test-results",
Name: "web5-swift",
Repo: "TBD54566975/web5-swift",
ArtifactName: "test-results",
FeatureRegex: regexp.MustCompile(`Web5TestVectors(\w+)`),
VectorRegex: regexp.MustCompile(`(\w+)`),
VectorRegex: regexp.MustCompile(`test_(\w+)`),
VectorPath: "test-vectors",
Type: "web5",
},
Expand All @@ -52,13 +52,12 @@ var (
VectorPath: "tbdex-test-vectors",
Type: "web5",
},

{
Name: "web5-swift",
Repo: "TBD54566975/web5-swift",
ArtifactName: "test-results",
Name: "web5-core-kt",
Repo: "TBD54566975/web5-rs",
ArtifactName: "kotlin-test-results",
FeatureRegex: regexp.MustCompile(`Web5TestVectors(\w+)`),
VectorRegex: regexp.MustCompile(`test_(\w+)`),
VectorRegex: regexp.MustCompile(`(\w+)`),
VectorPath: "test-vectors",
Type: "web5",
},
Expand Down
Loading