Skip to content

Commit

Permalink
feat(e2e): implement end-to-end testing infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
Elijas committed Oct 13, 2023
1 parent e50a45b commit 486df3a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/e2e/manage_snapshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def print_verification_result_table(
"Accuracy",
justify="center",
)
table.add_column("Speed\n(Limit, %Limit, Size)", justify="center")
table.add_column("Execution Time\n(Limit, %Limit, Size)", justify="center")

for result in results:
if result.missing_count and result.unexpected_count:
Expand Down Expand Up @@ -125,6 +125,9 @@ def print_verification_result_table(
)

console.print(table)
print(
f"[dim]Note: Execution Time Limit is based on a set rate of [bold]{ALLOWED_MICROSECONDS_PER_CHAR}[/bold] microseconds per HTML character (Size).[/dim]\n",
)


def manage_snapshots(action: Literal["generate", "verify"], data_dir: str) -> None:
Expand Down

0 comments on commit 486df3a

Please sign in to comment.